summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_asyncio/test_proactor_events.py
Commit message (Expand)AuthorAgeFilesLines
* gh-103607: Fix `pause_reading` to work when called from `connection_made` in ...Itayazolay2023-04-271-0/+13
* gh-99941: Ensure that asyncio.Protocol.data_received receives immutable bytes...DarioDaF2022-12-101-1/+4
* gh-98703: Add tests for closing `_ProactorSocketTransport` with proactor even...Kumar Aditya2022-10-271-0/+21
* GH-89237: fix hang in proactor `subprocess.wait_closed()` (#98572)Kumar Aditya2022-10-241-1/+6
* Revert "gh-87079: Warn on unintended signal wakeup fd override in `asyncio` (...Guido van Rossum2022-09-171-12/+3
* gh-87079: Warn on unintended signal wakeup fd override in `asyncio` (#96807)Michel Hidalgo2022-09-171-3/+12
* bpo-43253: Don't call shutdown() for invalid socket handles (GH-31892)Maximilian Hils2022-03-151-0/+8
* Inherit asyncio proactor datagram transport from asyncio.DatagramTransport (#...Andrew Svetlov2022-02-221-0/+1
* bpo-23819: Fix asyncio tests on python optimized mode (GH-30195)Kumar Aditya2021-12-261-0/+2
* bpo-39010: Fix errors logged on proactor loop restart (#22017)Ben Darnell2020-08-311-0/+1
* bpo-40275: Use new test.support helper submodules in tests (GH-21764)Hai Shi2020-08-071-4/+4
* bpo-41273: asyncio's proactor read transport's better performance by using re...Tony Solomonik2020-07-141-27/+43
* bpo-40275: Avoid importing socket in test.support (GH-19603)Serhiy Storchaka2020-04-251-1/+2
* bpo-33694: Remove test_asyncio ProactorDatagramTransportTests (GH-16288)Victor Stinner2019-09-201-253/+0
* bpo-38107: Replace direct future and task contructor calls with factories in ...Andrew Svetlov2019-09-111-24/+24
* Remove unused imports in tests (GH-14518)Victor Stinner2019-07-011-2/+0
* bpo-29883: Asyncio proactor udp (GH-13440)Andrew Svetlov2019-05-281-0/+278
* bpo-23057: add loop self socket as wakeup fd for signals (#11135)Vladimir Matveev2018-12-181-5/+5
* bpo-34622: Extract asyncio exceptions into a separate module (GH-9141)Andrew Svetlov2018-09-111-3/+3
* bpo-33833: Fix ProactorSocketTransport AssertionError (#7893)twisteroid ambassador2018-07-301-0/+13
* bpo-33694: Fix race condition in asyncio proactor (GH-7498)Victor Stinner2018-06-071-0/+4
* bpo-33562: Check the global asyncio event loop policy isn't set after any tes...Brett Cannon2018-06-021-0/+4
* bpo-33654: Support BufferedProtocol in set_protocol() and start_tls() (GH-7130)Yury Selivanov2018-05-281-2/+60
* bpo-26819: Prevent proactor double read on resume (#6921)CtrlZvi2018-05-201-1/+8
* bpo-32622: Native sendfile on windows (#5565)Andrew Svetlov2018-02-251-0/+116
* bpo-32251: Implement asyncio.BufferedProtocol. (#4755)Yury Selivanov2018-01-281-3/+194
* bpo-29711: Fix stop_serving in proactor loop kill all listening servers (#431)Julien Duponchelle2017-12-191-4/+15
* bpo-32356: idempotent pause_/resume_reading; new is_reading method. (#4914)Yury Selivanov2017-12-181-0/+10
* bpo-32327: Convert asyncio functions documented as coroutines to coroutines. ...Yury Selivanov2017-12-151-21/+0
* Fix couple typos (#4839)Andrew Svetlov2017-12-131-1/+1
* bpo-32273: Move asyncio.test_utils to test.test_asyncio (#4785)Yury Selivanov2017-12-111-1/+1
* asyncio: use directly socket.socketpair() (#4597)Victor Stinner2017-11-281-14/+4
* bpo-31819: Add AbstractEventLoop.sock_recv_into() (#4051)Antoine Pitrou2017-10-191-0/+5
* bpo-31250, test_asyncio: fix dangling threads (#3252)Victor Stinner2017-09-011-1/+0
* Issue #28613: Fix get_event_loop() to return the current loopYury Selivanov2016-11-041-0/+3
* asyncio: Skip getaddrinfo if host is already resolved.Yury Selivanov2015-12-171-3/+3
* asyncio: Add Transport.is_closing()Yury Selivanov2015-11-161-3/+3
* Issue #23243, asyncio: Emit a ResourceWarning when an event loop or a transportVictor Stinner2015-01-291-1/+5
* asyncio: Enhance BaseProactorEventLoop._loop_self_reading()Victor Stinner2015-01-211-2/+3
* Issue #23243: Close explicitly transports in asyncio testsVictor Stinner2015-01-151-39/+48
* Issue #23243: Close explicitly event loops in asyncio testsVictor Stinner2015-01-151-0/+4
* Issue #22926: In debug mode, call_soon(), call_at() and call_later() methods ofVictor Stinner2014-12-261-4/+3
* asyncio, tulip issue 202: Add unit test of pause/resume writing for proactorVictor Stinner2014-12-111-0/+82
* Python issue #21645, Tulip issue 192: Rewrite signal handlingVictor Stinner2014-07-171-1/+1
* asyncio: sync with TulipVictor Stinner2014-07-121-3/+4
* asyncio: Refactor tests: add a base TestCase classVictor Stinner2014-06-171-3/+4
* asyncio: Replace "unittest.mock" with "mock" in unit testsVictor Stinner2014-02-261-39/+39
* asyncio, Tulip issue 139: Improve error messages on "fatal errors"Victor Stinner2014-02-191-3/+9
* asyncio: New error handling API. Issue #20681.Yury Selivanov2014-02-181-4/+4
* asyncio, Tulip issue 126: call_soon(), call_soon_threadsafe(), call_later(),Victor Stinner2014-02-111-1/+1