summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_asyncio/test_base_events.py
Commit message (Expand)AuthorAgeFilesLines
* gh-71042: Add `platform.android_ver` (#116674)Malcolm Smith2024-03-271-0/+5
* gh-111358: Fix timeout behaviour in BaseEventLoop.shutdown_default_executor (...Jamie Phan2024-02-191-0/+16
* gh-114887 Reject only sockets of type SOCK_STREAM in create_datagram_endpoint...Travis Howse2024-02-031-1/+1
* gh-110771: Decompose run_forever() into parts (#110773)Russell Keith-Magee2023-10-131-0/+37
* gh-110088, gh-109878: Fix test_asyncio timeouts (#110092)Victor Stinner2023-09-291-5/+2
* Fix potential flakiness in `test_run_until_complete_baseexception` (#100148)Fantix King2022-12-101-1/+1
* Fix `test_run_until_complete_baseexception` test to check for `KeyboardInterr...Fantix King2022-12-081-8/+3
* gh-93453: No longer create an event loop in get_event_loop() (#98440)Serhiy Storchaka2022-12-061-1/+1
* GH-79033: Fix asyncio.Server.wait_closed() (#98582)Guido van Rossum2022-11-241-1/+1
* gh-93973: Add all_errors to asyncio.create_connection (#93974)Pamela Fox2022-09-051-0/+36
* gh-72889: Remove redundant mock.Mock()._is_coroutine = False workarounds (#94...Thomas Grainger2022-07-171-10/+0
* bpo-44011: New asyncio ssl implementation (#31275)Kumar Aditya2022-02-151-7/+14
* bpo-26552: Fixed case where failing `asyncio.ensure_future` did not close the...Kumar Aditya2022-01-281-1/+12
* bpo-46358: modernize `test_asyncio` (GH-30562)Nikita Sobolev2022-01-131-13/+4
* bpo-23819: Fix asyncio tests on python optimized mode (GH-30195)Kumar Aditya2021-12-261-2/+2
* bpo-23819: Get rid of assert statements in test_asyncio (GH-30212)Serhiy Storchaka2021-12-201-11/+19
* bpo-23819: asyncio: Replace AssertionError with TypeError where it makes sens...Kumar Aditya2021-12-061-0/+4
* bpo-45129 Remove deprecated reuse_address (GH-28207)Hugo van Kemenade2021-09-081-26/+0
* 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-011-4/+2
* bpo-44011: Revert "New asyncio ssl implementation (GH-17975)" (GH-25848)Pablo Galindo2021-05-031-14/+7
* bpo-44011: New asyncio ssl implementation (#17975)Andrew Svetlov2021-05-021-7/+14
* bpo-43651: PEP 597: Fix EncodingWarning in some tests (GH-25145)Inada Naoki2021-04-041-1/+1
* bpo-31904: Skip some asyncio tests on VxWorks (#23815)pxinwr2020-12-171-0/+2
* bpo-42392: Remove loop parameter from asyncio.streams (GH-23517)Yurii Karabas2020-11-261-3/+1
* bpo-40275: Use new test.support helper submodules in tests (GH-20824)Hai Shi2020-06-251-4/+5
* bpo-40443: Remove unused imports in tests (GH-19804)Victor Stinner2020-04-301-1/+0
* bpo-40275: Avoid importing socket in test.support (GH-19603)Serhiy Storchaka2020-04-251-7/+8
* Fix warnings in test_asyncio.test_base_events (#17577)Kyle Stanley2019-12-121-3/+4
* bpo-37228: Fix loop.create_datagram_endpoint()'s usage of SO_REUSEADDR (#17311)Kyle Stanley2019-12-091-17/+24
* bpo-38841: Skip asyncio test_create_datagram_endpoint_existing_sock_unix (GH-...xdegaye2019-11-201-1/+1
* bpo-34037: test_asyncio uses shutdown_default_executor() (GH-16284)Victor Stinner2019-09-191-0/+6
* bpo-37199: Replace the early returns added in c2cda63. (GH-14535)Zackery Spytz2019-09-131-37/+34
* bpo-38107: Replace direct future and task contructor calls with factories in ...Andrew Svetlov2019-09-111-16/+16
* bpo-37199: Fix test failures when IPv6 is unavailable or disabled (#14480)Zackery Spytz2019-06-301-1/+8
* bpo-35545: Skip `test_asyncio.test_create_connection_ipv6_scope` on AIX (GH-1...Michael Felt2019-06-121-0/+2
* bpo-36889: Merge asyncio streams (GH-13251)Andrew Svetlov2019-05-271-2/+3
* bpo-32528: Make asyncio.CancelledError a BaseException. (GH-13528)Yury Selivanov2019-05-271-4/+2
* bpo-35545: Fix asyncio discarding IPv6 scopes (GH-11271)Erwan Le Pape2019-05-171-0/+22
* bpo-36921: Deprecate @coroutine for sake of async def (GH-13346)Andrew Svetlov2019-05-161-34/+20
* bpo-31922: Do not connect UDP sockets when broadcast is allowed (GH-423)Vincent Michel2019-05-071-0/+17
* bpo-34139: Remove unix datagram socket from FS before binding (GH-8323)Quentin Dawans2019-04-091-0/+14
* bpo-35380: Enable TCP_NODELAY for proactor event loop (#10867)Andrew Svetlov2018-12-031-3/+27
* bpo-34769: Thread safety for _asyncgen_finalizer_hook(). (GH-9716)twisteroid ambassador2018-10-091-0/+68
* bpo-34728: Fix asyncio tests to run under "-Werror" (GH-9661)Yury Selivanov2018-10-021-2/+2
* bpo-34849: Don't log wating for selector.select in asyncio loop iteration (GH...Andrew Svetlov2018-09-301-25/+0
* bpo-34687: Make asynico use ProactorEventLoop by default (GH-9538)Victor Stinner2018-09-251-1/+1
* bpo-34622: Extract asyncio exceptions into a separate module (GH-9141)Andrew Svetlov2018-09-111-2/+2
* bpo-34270: Make it possible to name asyncio tasks (GH-8547)Alex Grönholm2018-08-081-0/+28
* bpo-34075: Deprecate non-ThreadPoolExecutor in loop.set_default_executor() (G...Elvis Pranskevichus2018-07-301-1/+13