summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio/events.py
Commit message (Expand)AuthorAgeFilesLines
* gh-113538: Add asycio.Server.{close,abort}_clients (redo) (#116784)Pierre Ossman (ThinLinc team)2024-03-181-0/+8
* gh-113538: Revert "gh-113538: Add asycio.Server.{close,abort}_clients (#11443...Guido van Rossum2024-03-121-8/+0
* gh-113538: Add asycio.Server.{close,abort}_clients (#114432)Pierre Ossman (ThinLinc team)2024-03-111-0/+8
* gh-112997: Don't log arguments in asyncio unless debugging (#115667)Pierre Ossman (ThinLinc team)2024-02-281-2/+4
* gh-95649: Document that asyncio contains uvloop code (#107536)Alois Klink2024-01-121-0/+4
* gh-101336: Add keep_alive keyword arg for asyncio create_server() (#112485)beavailable2023-12-131-0/+4
* gh-106634: Corrected minor asyncio doc issues (#106671)Chris Brett2023-07-131-1/+1
* gh-100160: Restore and deprecate implicit creation of an event loop (GH-100410)Serhiy Storchaka2023-01-131-1/+23
* GH-100363: Speed up `asyncio.get_running_loop` (#100364)Kumar Aditya2022-12-211-0/+1
* gh-93453: No longer create an event loop in get_event_loop() (#98440)Serhiy Storchaka2022-12-061-16/+2
* GH-66285: fix forking in asyncio (#99769)Kumar Aditya2022-11-271-0/+11
* GH-66285: Revert "fix forking in asyncio" (#99756)Kumar Aditya2022-11-241-9/+0
* GH-66285: fix forking in `asyncio` (#99539)Kumar Aditya2022-11-241-0/+9
* GH-96704: Add {Task,Handle}.get_context(), use it in call_exception_handler()...Guido van Rossum2022-10-051-0/+3
* bpo-46994: Accept explicit contextvars.Context in asyncio create_task() API (...Andrew Svetlov2022-03-141-1/+1
* bpo-46805: Add low level UDP socket functions to asyncio (GH-31455)Alex Grönholm2022-03-131-0/+9
* bpo-44011: New asyncio ssl implementation (#31275)Kumar Aditya2022-02-151-3/+16
* bpo-46278: fix typo introduced in GH-30427 (GH-30430)Kumar Aditya2022-01-061-2/+2
* Reflect 'context' arg in 'AbstractEventLoop.call_*()' methods (GH-30427)Andrew Svetlov2022-01-061-4/+4
* bpo-23819: asyncio: Replace AssertionError with TypeError where it makes sens...Kumar Aditya2021-12-061-3/+4
* Fix typos in the Lib directory (GH-28775)Christian Clauss2021-10-061-2/+2
* bpo-44011: Revert "New asyncio ssl implementation (GH-17975)" (GH-25848)Pablo Galindo2021-05-031-16/+3
* bpo-44011: New asyncio ssl implementation (#17975)Andrew Svetlov2021-05-021-3/+16
* bpo-39529: Deprecate creating new event loop in asyncio.get_event_loop() (GH-...Serhiy Storchaka2021-04-251-1/+10
* bpo-41332: Added missing connect_accepted_socket() to AbstractEventLoop (GH-2...Alex Grönholm2020-11-261-0/+14
* bpo-40782: Change asyncio.AbstractEventLoop.run_in_executor to be a method no...James Weaver2020-08-171-1/+1
* bpo-40443: Remove unused imports in the stdlib (GH-19803)Victor Stinner2020-04-301-1/+0
* Fix typo from Lib/asyncio/events.py (GH-19410)Galden2020-04-141-1/+1
* bpo-38951: Use threading.main_thread() check in asyncio (GH-17433)Hill Ma2019-12-051-1/+1
* bpo-34344 Fix AbstractEventLoopPolicy.get_event_loop docstring (GH-16463)idomic2019-10-031-2/+2
* bpo-34037: Fix test_asyncio failure and add loop.shutdown_default_executor() ...Kyle Stanley2019-09-191-0/+4
* bpo-37685: Fixed __eq__, __lt__ etc implementations in some classes. (GH-14952)Serhiy Storchaka2019-08-081-12/+12
* bpo-32528: Make asyncio.CancelledError a BaseException. (GH-13528)Yury Selivanov2019-05-271-1/+3
* bpo-33530: Implement Happy Eyeballs in asyncio, v2 (GH-7237)twisteroid ambassador2019-05-051-1/+2
* bpo-34622: Extract asyncio exceptions into a separate module (GH-9141)Andrew Svetlov2018-09-111-9/+2
* bpo-34270: Make it possible to name asyncio tasks (GH-8547)Alex Grönholm2018-08-081-1/+1
* bpo-33734: asyncio/ssl: a bunch of bugfixes (#7321)Yury Selivanov2018-06-041-3/+2
* Revert "bpo-22087: Fix Policy.get_event_loop() to detect fork (GH-7208)" (#7232)Yury Selivanov2018-05-301-7/+0
* bpo-22087: Fix Policy.get_event_loop() to detect fork (GH-7208)Yury Selivanov2018-05-291-0/+7
* Fix senfile typo (#6265)Sam Dunster2018-03-281-1/+1
* Implement TimerHandle.when() (#5473)Andrew Svetlov2018-02-011-0/+8
* bpo-32622: Implement loop.sendfile() (#5271)Andrew Svetlov2018-01-271-0/+8
* bpo-32662: Implement Server.start_serving() and Server.serve_forever() (#5312)Yury Selivanov2018-01-251-5/+43
* bpo-32436: Implement PEP 567 (#5027)Yury Selivanov2018-01-231-5/+10
* bpo-32410: Make SendfileNotAvailableError exception public (#5243)Andrew Svetlov2018-01-191-1/+9
* bpo-32410: Implement loop.sock_sendfile() (#4976)Andrew Svetlov2018-01-161-0/+4
* bpo-32418: Postfix, raise NotImplementdError and close resources in tests (#5...Andrew Svetlov2017-12-301-3/+3
* bpo-32418: Add get_loop() method on Server, AbstractServer classes (#4997)Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి)2017-12-301-0/+4
* bpo-23749: Implement loop.start_tls() (#5039)Yury Selivanov2017-12-301-0/+11
* bpo-29970: Make ssh_handshake_timeout None by default (#4939)Andrew Svetlov2017-12-201-5/+4