summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_asyncio/test_unix_events.py
Commit message (Expand)AuthorAgeFilesLines
* [3.10] gh-93453: Only emit deprecation warning in asyncio.get_event_loop when...Ɓukasz Langa2022-12-061-1/+2
* gh-95597: Fix typo in Lib directory files (GH-95599)Miss Islington (bot)2022-08-031-1/+1
* [3.10] Fix warning: asyncio.events._event_loop_policy was modified by test_as...Andrew Svetlov2022-02-101-4/+4
* bpo-23819: Get rid of assert statements in test_asyncio (GH-30212) (GH-30213)Miss Islington (bot)2021-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
* bpo-29970: Make ssh_handshake_timeout None by default (#4939)Andrew Svetlov2017-12-201-0/+17
* bpo-32273: Move asyncio.test_utils to test.test_asyncio (#4785)Yury Selivanov2017-12-111-1/+1
* bpo-32193: Convert asyncio to async/await usage (#4753)Andrew Svetlov2017-12-081-3/+2
* bpo-32166: Drop Python 3.4 code from asyncio (#4612)Andrew Svetlov2017-11-291-2/+2
* bpo-28684: asyncio tests handle PermissionError raised on binding unix socket...xdegaye2017-11-241-0/+4
* bpo-32066: Support pathlib.Path in create_unix_connection; sock arg should be...Yury Selivanov2017-11-201-2/+10
* bpo-28369: Enhance transport socket check in add_reader/writer (#4365)Yury Selivanov2017-11-131-0/+70
* Remove unused imports.Serhiy Storchaka2016-12-161-1/+0
* Issue #28704: Fix create_unix_server to support Path-like objectsYury Selivanov2016-11-151-0/+10
* Issue #28652: Make loop methods reject socket kinds they do not support.Yury Selivanov2016-11-091-0/+27
* Issue #28613: Fix get_event_loop() to return the current loopYury Selivanov2016-11-041-0/+5
* Issue #28399: Remove UNIX socket from FS before binding.Yury Selivanov2016-10-091-5/+7
* asyncio: Only allow Unix Stream sockets for loop.create_unix_server/connectionYury Selivanov2016-10-071-1/+10
* Issue #28368: Refuse monitoring processes if the child watcher has no loop at...Yury Selivanov2016-10-051-1/+13
* Issue #26909: Fix slow pipes IO in asyncio.Yury Selivanov2016-09-151-27/+22
* asyncio: Add Transport.is_closing()Yury Selivanov2015-11-161-6/+6
* Use os.devnull instead of hardcoded '/dev/null'.Serhiy Storchaka2015-02-151-3/+3
* asyncio: sync with TulipVictor Stinner2015-01-291-18/+11
* Issue #23243: Close explicitly transports in asyncio testsVictor Stinner2015-01-151-94/+60
* Issue #23243: Fix asyncio._UnixWritePipeTransport.close()Victor Stinner2015-01-151-0/+3
* asyncio: sync with TulipVictor Stinner2015-01-141-0/+1
* asyncio: sync with TulipVictor Stinner2014-12-261-2/+0
* asyncio: Coroutine objects are now rejected with a TypeError by the followingVictor Stinner2014-11-201-4/+10
* - Issue #22841: Reject coroutines in asyncio add_signal_handler().Guido van Rossum2014-11-141-0/+12