summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_asyncio/test_unix_events.py
Commit message (Expand)AuthorAgeFilesLines
* gh-117657: Skip tests that use threads after fork (#122194)Sam Gross2024-07-231-0/+3
* GH-120804: Remove `PidfdChildWatcher`, `ThreadedChildWatcher` and `AbstractCh...Kumar Aditya2024-06-231-26/+0
* GH-120804: Remove `get_child_watcher` and `set_child_watcher` from asyncio (#...Kumar Aditya2024-06-231-29/+0
* GH-120804: Remove SafeChildWatcher, FastChildWatcher and MultiLoopChildWatche...Kumar Aditya2024-06-211-636/+0
* gh-119064: Use os_helper.FakePath instead of pathlib.Path in tests (GH-119065)Serhiy Storchaka2024-05-161-6/+5
* gh-114099: Add test exclusions to support running the test suite on iOS (#114...Russell Keith-Magee2024-02-051-1/+1
* gh-110335: asyncio test_unix_events cleans multiprocessing (#110336)Victor Stinner2023-10-041-0/+8
* gh-109582: test_fork_signal_handling should wait for event (#109605)Davide Rizzo2023-09-211-2/+11
* gh-103780: Use patch instead of mock in asyncio unix events test (#103782)Itamar Ostricher2023-04-241-5/+4
* gh-102799: remove unnecessary calls to sys.exc_info() in tests (#102800)Irit Katriel2023-03-181-2/+2
* gh-100160: Restore and deprecate implicit creation of an event loop (GH-100410)Serhiy Storchaka2023-01-131-2/+6
* gh-93453: No longer create an event loop in get_event_loop() (#98440)Serhiy Storchaka2022-12-061-4/+7
* GH-66285: remove redundant `time.sleep` from `test_fork_signal_handling` (GH-...Kumar Aditya2022-12-031-1/+0
* GH-66285: fix forking in asyncio (#99769)Kumar Aditya2022-11-271-0/+98
* GH-66285: Revert "fix forking in asyncio" (#99756)Kumar Aditya2022-11-241-99/+0
* GH-66285: skip asyncio fork tests for platforms without md5 hash (#99745)Kumar Aditya2022-11-241-0/+4
* GH-66285: fix forking in `asyncio` (#99539)Kumar Aditya2022-11-241-0/+95
* GH-94597: add deprecation warnings for subclassing `AbstractChildWatcher` (#9...Kumar Aditya2022-11-121-1/+8
* GH-94597: Deprecate child watcher getters and setters (#98215)Kumar Aditya2022-10-151-9/+12
* GH-94597: deprecate `SafeChildWatcher`, `FastChildWatcher` and `MultiLoopChil...Kumar Aditya2022-10-081-5/+16
* GH-98023: Change default child watcher to PidfdChildWatcher on supported syst...Kumar Aditya2022-10-081-1/+13
* Revert "gh-87079: Warn on unintended signal wakeup fd override in `asyncio` (...Guido van Rossum2022-09-171-24/+0
* gh-87079: Warn on unintended signal wakeup fd override in `asyncio` (#96807)Michel Hidalgo2022-09-171-0/+24
* gh-95597: Fix typo in Lib directory files (#95599)Jo, Yunjin2022-08-031-1/+1
* gh-84623: Remove unused imports (#94132)Victor Stinner2022-06-221-1/+0
* gh-93852: Add test.support.create_unix_domain_name() (#93914)Victor Stinner2022-06-171-19/+21
* Fix warning: asyncio.events._event_loop_policy was modified by test_asyncio (...Andrew Svetlov2022-02-101-4/+4
* bpo-23819: Get rid of assert statements in test_asyncio (GH-30212)Serhiy Storchaka2021-12-201-1/+2
* bpo-40364: asyncio uses os.waitstatus_to_exitcode() (GH-23798)Victor Stinner2020-12-161-196/+65
* bpo-40275: Use new test.support helper submodules in tests (GH-20824)Hai Shi2020-06-251-4/+4
* bpo-40275: Avoid importing socket in test.support (GH-19603)Serhiy Storchaka2020-04-251-6/+7
* bpo-38019: correctly handle pause/resume reading of closed asyncio unix pipe ...Andrew Svetlov2019-09-291-0/+27
* bpo-38107: Replace direct future and task contructor calls with factories in ...Andrew Svetlov2019-09-111-2/+2
* Remove unused imports in tests (GH-14518)Victor Stinner2019-07-011-2/+0
* bpo-35621: Support running subprocesses in asyncio when loop is executed in n...Andrew Svetlov2019-06-301-25/+9
* Revert "bpo-35621: Support running subprocesses in asyncio when loop is execu...Andrew Svetlov2019-06-041-9/+25
* bpo-35621: Fix tests when SafeChildWatcher is expected instead of ThreadedChi...Andrew Svetlov2019-06-021-0/+1
* bpo-35621: Support running subprocesses in asyncio when loop is executed in n...Andrew Svetlov2019-06-021-25/+9
* bpo-37035: Don't log OSError (GH-13548)Andrew Svetlov2019-05-271-5/+1
* bpo-35602: Make sure the transport is always closed in SelectorEventLoopUnixS...Pablo Galindo2018-12-291-5/+5
* bpo-34622: Extract asyncio exceptions into a separate module (GH-9141)Andrew Svetlov2018-09-111-6/+6
* bpo-33562: Check the global asyncio event loop policy isn't set after any tes...Brett Cannon2018-06-021-0/+4
* Revert "bpo-22087: Fix Policy.get_event_loop() to detect fork (GH-7208)" (#7232)Yury Selivanov2018-05-301-32/+0
* bpo-22087: Fix Policy.get_event_loop() to detect fork (GH-7208)Yury Selivanov2018-05-291-0/+32
* bpo-33332: Add signal.valid_signals() (GH-6581)Antoine Pitrou2018-05-041-0/+12
* bpo-32622: Native sendfile on windows (#5565)Andrew Svetlov2018-02-251-55/+9
* bpo-32410: Improve sock_sendfile tests (#5294)Andrew Svetlov2018-01-241-16/+19
* bpo-32410: Make SendfileNotAvailableError exception public (#5243)Andrew Svetlov2018-01-191-6/+7
* bpo-32410: Implement loop.sock_sendfile() (#4976)Andrew Svetlov2018-01-161-0/+251
* bpo-26133: Fix typos (#5010)Andrew Svetlov2017-12-261-0/+17