Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.122
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
local /
lib /
python3.10 /
test /
test_asyncio /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-sr-x
2025-06-04 09:23
__init__.py
283
B
-rw-r--r--
2025-06-04 09:23
__main__.py
58
B
-rw-r--r--
2025-06-04 09:23
echo.py
148
B
-rw-r--r--
2025-06-04 09:23
echo2.py
123
B
-rw-r--r--
2025-06-04 09:23
echo3.py
276
B
-rw-r--r--
2025-06-04 09:23
functional.py
7.3
KB
-rw-r--r--
2025-06-04 09:23
test_base_events.py
79.07
KB
-rw-r--r--
2025-06-04 09:23
test_buffered_proto.py
2.28
KB
-rw-r--r--
2025-06-04 09:23
test_context.py
1.04
KB
-rw-r--r--
2025-06-04 09:23
test_events.py
104.04
KB
-rw-r--r--
2025-06-04 09:23
test_futures.py
29.24
KB
-rw-r--r--
2025-06-04 09:23
test_futures2.py
1.58
KB
-rw-r--r--
2025-06-04 09:23
test_locks.py
29.46
KB
-rw-r--r--
2025-06-04 09:23
test_pep492.py
5.65
KB
-rw-r--r--
2025-06-04 09:23
test_proactor_events.py
37.03
KB
-rw-r--r--
2025-06-04 09:23
test_protocols.py
2.24
KB
-rw-r--r--
2025-06-04 09:23
test_queues.py
18.6
KB
-rw-r--r--
2025-06-04 09:23
test_runners.py
5.18
KB
-rw-r--r--
2025-06-04 09:23
test_selector_events.py
47.96
KB
-rw-r--r--
2025-06-04 09:23
test_sendfile.py
20.95
KB
-rw-r--r--
2025-06-04 09:23
test_server.py
3.8
KB
-rw-r--r--
2025-06-04 09:23
test_sock_lowlevel.py
18.07
KB
-rw-r--r--
2025-06-04 09:23
test_sslproto.py
25.77
KB
-rw-r--r--
2025-06-04 09:23
test_streams.py
36.51
KB
-rw-r--r--
2025-06-04 09:23
test_subprocess.py
26.26
KB
-rw-r--r--
2025-06-04 09:23
test_tasks.py
111.8
KB
-rw-r--r--
2025-06-04 09:23
test_threads.py
1.59
KB
-rw-r--r--
2025-06-04 09:23
test_transports.py
3.73
KB
-rw-r--r--
2025-06-04 09:23
test_unix_events.py
61.11
KB
-rw-r--r--
2025-06-04 09:23
test_waitfor.py
8.47
KB
-rw-r--r--
2025-06-04 09:23
test_windows_events.py
10.69
KB
-rw-r--r--
2025-06-04 09:23
test_windows_utils.py
4.14
KB
-rw-r--r--
2025-06-04 09:23
utils.py
16.94
KB
-rw-r--r--
2025-06-04 09:23
Save
Rename
import asyncio import decimal import unittest def tearDownModule(): asyncio.set_event_loop_policy(None) @unittest.skipUnless(decimal.HAVE_CONTEXTVAR, "decimal is built with a thread-local context") class DecimalContextTest(unittest.TestCase): def test_asyncio_task_decimal_context(self): async def fractions(t, precision, x, y): with decimal.localcontext() as ctx: ctx.prec = precision a = decimal.Decimal(x) / decimal.Decimal(y) await asyncio.sleep(t) b = decimal.Decimal(x) / decimal.Decimal(y ** 2) return a, b async def main(): r1, r2 = await asyncio.gather( fractions(0.1, 3, 1, 3), fractions(0.2, 6, 1, 3)) return r1, r2 r1, r2 = asyncio.run(main()) self.assertEqual(str(r1[0]), '0.333') self.assertEqual(str(r1[1]), '0.111') self.assertEqual(str(r2[0]), '0.333333') self.assertEqual(str(r2[1]), '0.111111') if __name__ == '__main__': unittest.main()