summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio/base_events.py
Commit message (Expand)AuthorAgeFilesLines
* gh-101143: Remove references to `TimerHandle` from `asyncio.base_events.BaseE...J. Nick Koston2023-01-211-6/+3
* GH-86508: skip binding to local addresses of different family in `asyncio.ope...Kumar Aditya2023-01-041-2/+8
* GH-79033: Fix asyncio.Server.wait_closed() (#98582)Guido van Rossum2022-11-241-1/+1
* gh-88863: Clear ref cycles to resolve leak when asyncio.open_connection raise...Dong Uk, Kang2022-11-221-12/+19
* GH-96704: Add {Task,Handle}.get_context(), use it in call_exception_handler()...Guido van Rossum2022-10-051-1/+16
* gh-94732: Fix KeyboardInterrupt race in asyncio run_forever() (#97765)hetmankp2022-10-031-3/+4
* GH-96827: Don't touch closed loops from executor threads (#96837)Guido van Rossum2022-09-301-2/+4
* GH-82448: Add thread timeout for loop.shutdown_default_executor (#97561)Kumar Aditya2022-09-281-3/+14
* gh-93973: Add all_errors to asyncio.create_connection (#93974)Pamela Fox2022-09-051-1/+4
* Fix missing `f` prefix on f-strings (GH-91910)Alexander Shadchin2022-04-271-1/+1
* bpo-46994: Accept explicit contextvars.Context in asyncio create_task() API (...Andrew Svetlov2022-03-141-3/+8
* bpo-46955: Expose asyncio.base_events.Server as asyncio.Server (GH-31760)Stefan Zabka2022-03-081-1/+1
* Raise TypeError if SSLSocket is passed to asyncio transport-based methods (GH...Andrew Svetlov2022-02-201-0/+15
* bpo-44011: New asyncio ssl implementation (#31275)Kumar Aditya2022-02-151-9/+34
* bpo-23819: Fix asyncio tests on python optimized mode (GH-30195)Kumar Aditya2021-12-261-2/+2
* Re-add `reuse_address` parameter to `create_server` (GH-29733)Jim Crist-Harif2021-12-121-0/+6
* 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-25/+2
* bpo-44740: Lowercase "internet" and "web" where appropriate. (#27378)Mariusz Felisiak2021-07-261-1/+1
* bpo-43234: Prohibit non-ThreadPoolExecutor in loop.set_default_executor (GH-2...Illia Volochii2021-07-011-5/+1
* bpo-44011: Revert "New asyncio ssl implementation (GH-17975)" (GH-25848)Pablo Galindo2021-05-031-34/+9
* bpo-44011: New asyncio ssl implementation (#17975)Andrew Svetlov2021-05-021-9/+34
* bpo-42392: Remove loop parameter from asyncio.tasks and asyncio.subprocess (G...Yurii Karabas2020-11-281-5/+4
* bpo-41332: Added missing connect_accepted_socket() to AbstractEventLoop (GH-2...Alex Grönholm2020-11-261-8/+0
* bpo-39609: set the thread_name_prefix for the default asyncio executor (GH-18...Markus Mohrhard2020-02-271-1/+3
* bpo-39191: Fix RuntimeWarning in asyncio test (GH-17863)Andrew Svetlov2020-01-071-3/+3
* Fix #39191: Don't spawn a task before failing (#17796)Andrew Svetlov2020-01-041-3/+7
* bpo-37228: Fix loop.create_datagram_endpoint()'s usage of SO_REUSEADDR (#17311)Kyle Stanley2019-12-091-7/+18
* bpo-34037: Fix test_asyncio failure and add loop.shutdown_default_executor() ...Kyle Stanley2019-09-191-0/+29
* Use threadpool for reading from file in sendfile fallback mode (#14076)Andrew Svetlov2019-06-151-1/+1
* bpo-37279: Fix asyncio sendfile support when extra data are sent in fallback...Andrew Svetlov2019-06-151-2/+2
* Revert "bpo-34037, asyncio: add BaseEventLoop.wait_executor_on_close (GH-1378...Łukasz Langa2019-06-041-3/+1
* bpo-34037, asyncio: add BaseEventLoop.wait_executor_on_close (GH-13786)Victor Stinner2019-06-031-1/+3
* bpo-35246: fix support for path-like args in asyncio subprocess (GH-13628)依云2019-05-291-5/+0
* bpo-36686: Improve the documentation of the std* params in loop.subprocess_ex...sbstp2019-05-271-1/+18
* bpo-37027: Return a proxy socket object from transp.get_extra_info('socket') ...Yury Selivanov2019-05-271-2/+3
* bpo-37035: Don't log OSError (GH-13548)Andrew Svetlov2019-05-271-7/+0
* bpo-32528: Make asyncio.CancelledError a BaseException. (GH-13528)Yury Selivanov2019-05-271-5/+11
* bpo-35545: Fix asyncio discarding IPv6 scopes (GH-11271)Erwan Le Pape2019-05-171-3/+3
* bpo-31922: Do not connect UDP sockets when broadcast is allowed (GH-423)Vincent Michel2019-05-071-1/+2
* bpo-33530: Implement Happy Eyeballs in asyncio, v2 (GH-7237)twisteroid ambassador2019-05-051-36/+89
* bpo-34139: Remove unix datagram socket from FS before binding (GH-8323)Quentin Dawans2019-04-091-0/+14
* asyncio: use dict instead of OrderedDict (GH-11710)Inada Naoki2019-02-051-1/+1
* asyncio: __del__() keep reference to warnings.warn (GH-11491)Victor Stinner2019-01-101-3/+2
* bpo-35380: Enable TCP_NODELAY for proactor event loop (#10867)Andrew Svetlov2018-12-031-0/+11
* bpo-35202: Remove unused imports in Lib directory (GH-10450)Srinivas Thatiparthy (శ్రీనివాస్ తాటిపర్తి)2018-11-151-1/+0
* bpo-34769: Thread safety for _asyncgen_finalizer_hook(). (GH-9716)twisteroid ambassador2018-10-091-4/+1
* bpo-34849: Don't log wating for selector.select in asyncio loop iteration (GH...Andrew Svetlov2018-09-301-22/+1
* bpo-34630: Skip logging SSL certificate errors by asyncio code (GH-9169)Andrew Svetlov2018-09-121-0/+3
* bpo-34622: Extract asyncio exceptions into a separate module (GH-9141)Andrew Svetlov2018-09-111-5/+6