summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_asyncio
Commit message (Expand)AuthorAgeFilesLines
* bpo-45129 Remove deprecated reuse_address (GH-28207)Hugo van Kemenade2021-09-081-26/+0
* bpo-25130: Add calls of gc.collect() in tests to support PyPy (GH-28005)Serhiy Storchaka2021-08-291-0/+1
* bpo-45011: Fix test_asyncio without C module _asyncio (GH-27968)Serhiy Storchaka2021-08-264-7/+10
* bpo-44968: Fix test_subprocess_wait_no_same_group in test_asyncio (GH-27870)Serhiy Storchaka2021-08-211-1/+2
* bpo-43234: Prohibit non-ThreadPoolExecutor in loop.set_default_executor (GH-2...Illia Volochii2021-07-011-4/+4
* bpo-43216: Remove @asyncio.coroutine (GH-26369)Illia Volochii2021-07-015-538/+64
* bpo-44287: asyncio test_popen() uses longer timeout (GH-26832)Victor Stinner2021-06-211-1/+2
* bpo-38323: Skip SubprocessMultiLoopWatcherTest as they can hang the test suit...Pablo Galindo2021-06-041-0/+2
* bpo-44011: Revert "New asyncio ssl implementation (GH-17975)" (GH-25848)Pablo Galindo2021-05-034-1757/+60
* Increase test timeout (GH-25842)Andrew Svetlov2021-05-031-3/+3
* bpo-44011: Fix asyncio tests without ssl module (GH-25840)Christian Heimes2021-05-031-2/+7
* bpo-44011: New asyncio ssl implementation (#17975)Andrew Svetlov2021-05-024-60/+1752
* bpo-39529: Deprecate creating new event loop in asyncio.get_event_loop() (GH-...Serhiy Storchaka2021-04-255-152/+405
* bpo-43880: Show DeprecationWarnings for deprecated ssl module features (GH-25...Christian Heimes2021-04-191-2/+2
* bpo-43522: Fix SSLContext.hostname_checks_common_name (GH-24899)Christian Heimes2021-04-171-1/+1
* bpo-43723: Fix deprecation error caused by thread.setDaemon() (GH-25361)Christian Heimes2021-04-121-1/+1
* bpo-43651: PEP 597: Fix EncodingWarning in some tests (GH-25145)Inada Naoki2021-04-042-2/+2
* bpo-41891: ensure asyncio.wait_for waits for task completion (#22461)Richard Kojedzinszky2020-12-181-0/+61
* bpo-31904: Skip some asyncio tests on VxWorks (#23815)pxinwr2020-12-172-1/+10
* bpo-40364: asyncio uses os.waitstatus_to_exitcode() (GH-23798)Victor Stinner2020-12-161-196/+65
* bpo-42553: Fix test_asyncio.test_call_later() (GH-23627)Victor Stinner2020-12-031-3/+0
* bpo-34215: Clarify IncompleteReadError message when "expected" is None (GH-21...Zackery Spytz2020-11-281-3/+5
* bpo-42392: Remove loop parameter from asyncio.tasks and asyncio.subprocess (G...Yurii Karabas2020-11-283-84/+39
* bpo-42392: Remove loop parameter from asyncio.streams (GH-23517)Yurii Karabas2020-11-264-81/+45
* bpo-42392: Improve removal of *loop* parameter in asyncio primitives (GH-23499)Yurii Karabas2020-11-252-21/+17
* bpo-42392: Remove loop parameter form asyncio locks and Queue (#23420)Yurii Karabas2020-11-245-384/+257
* bpo-42413: socket.timeout is now an alias of TimeoutError (GH-23413)Christian Heimes2020-11-201-1/+1
* bpo-42140: Improve asyncio.wait function (GH-22938)Diogo Dutra2020-11-101-0/+24
* bpo-42183: Fix a stack overflow error for asyncio Task or Future repr() (GH-2...Andrew Svetlov2020-11-101-0/+18
* bpo-38912: fix close before connect callback in test_asyncio SSL tests (GH-22...Justin Turner Arthur2020-10-201-0/+2
* bpo-41687: Fix sendfile implementation to work with Solaris (#22040)Jakub Kulík2020-09-051-0/+6
* bpo-39010: Improve test shutdown (#22066)Ben Darnell2020-09-031-3/+11
* bpo-41696: Fix handling of debug mode in asyncio.run (#22069)Shantanu2020-09-031-0/+3
* bpo-39010: Fix errors logged on proactor loop restart (#22017)Ben Darnell2020-08-312-0/+21
* bpo-37658: Fix asyncio.wait_for() to respect waited task status (#21894)Elvis Pranskevichus2020-08-261-0/+16
* bpo-32751: Wait for task cancel in asyncio.wait_for() when timeout <= 0 (#21895)Elvis Pranskevichus2020-08-261-0/+31
* bpo-40275: Use new test.support helper submodules in tests (GH-21764)Hai Shi2020-08-071-4/+4
* bpo-41317: Remove reader on cancellation in asyncio.loop.sock_accept() (#21595)Alex Grönholm2020-07-231-0/+19
* bpo-41273: asyncio's proactor read transport's better performance by using re...Tony Solomonik2020-07-141-27/+43
* bpo-40967: Remove deprecated asyncio.Task.current_task() and asyncio.Task.all...Rémi Lapeyre2020-07-021-47/+1
* bpo-40275: Use new test.support helper submodules in tests (GH-20824)Hai Shi2020-06-255-16/+21
* bpo-38377: Add support.skip_if_broken_multiprocessing_synchronize() (GH-20944)Victor Stinner2020-06-181-2/+2
* bpo-30064: Fix slow asyncio sock test (GH-20868)Fantix King2020-06-141-14/+20
* bpo-30064: Properly skip unstable loop.sock_connect() racing test (GH-20494)Fantix King2020-05-281-20/+26
* bpo-30064: Fix unstable asyncio "racing" socket tests (GH-20485)Victor Stinner2020-05-281-0/+4
* bpo-40275: Adding threading_helper submodule in test.support (GH-20263)Hai Shi2020-05-272-3/+5
* bpo-30064: Fix asyncio loop.sock_* race condition issue (#20369)Fantix King2020-05-271-0/+131
* bpo-40696: Fix a hang that can arise after gen.throw() (GH-20287)Chris Jerdonek2020-05-221-3/+36
* bpo-32309: Add support for contextvars in asyncio.to_thread() (GH-20278)Kyle Stanley2020-05-211-0/+14
* bpo-32309: Implement asyncio.to_thread() (GH-20143)Kyle Stanley2020-05-191-0/+79