summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio
Commit message (Expand)AuthorAgeFilesLines
* gh-94972: document that shield users need to keep a reference to their task (...Miss Islington (bot)2022-09-101-2/+9
* GH-74116: Allow multiple drain waiters for asyncio.StreamWriter (GH-94705)Miss Islington (bot)2022-09-081-19/+16
* gh-90467: StreamReaderProtocol - add strong reference to created task (GH-96323)Miss Islington (bot)2022-09-081-1/+3
* bpo-45924: Fix asyncio incorrect traceback when future's exception is raised ...Miss Islington (bot)2022-07-111-1/+2
* gh-92841: Fix asyncio's RuntimeError: Event loop is closed (GH-92842) (GH-92904)Miss Islington (bot)2022-06-281-1/+1
* Fix missing `f` prefix on f-strings (GH-91910)Miss Islington (bot)2022-04-271-1/+1
* bpo-27929: resolve names only for AF_INET/AF_INET6 with asyncio (GH-32131)Miss Islington (bot)2022-03-281-1/+2
* [3.10] bpo-45997: Fix asyncio.Semaphore re-acquiring order (GH-31910) (#32047)Miss Islington (bot)2022-03-221-6/+10
* bpo-43253: Don't call shutdown() for invalid socket handles (GH-31892)Miss Islington (bot)2022-03-151-1/+1
* bpo-46955: Expose asyncio.base_events.Server as asyncio.Server (GH-31760)Miss Islington (bot)2022-03-081-1/+1
* Inherit asyncio proactor datagram transport from asyncio.DatagramTransport (G...Miss Islington (bot)2022-02-231-1/+2
* bpo-46827: pass sock.type to getaddrinfo in sock_connect (GH-31499)Miss Islington (bot)2022-02-221-1/+3
* bpo-46672: fix `NameError` in `asyncio.gather` if type check fails (GH-31187)...Miss Islington (bot)2022-02-201-1/+2
* [3.10] Raise TypeError if SSLSocket is passed to asyncio transport-based meth...Andrew Svetlov2022-02-202-10/+20
* bpo-46741: Update `asyncio.protocols.BufferedProtocol` docstring (GH-31327) (...Miss Islington (bot)2022-02-151-4/+0
* bpo-46487: Add `get_write_buffer_limits` to Write and _SSLProtocol transports...Miss Islington (bot)2022-02-012-0/+12
* bpo-26552: Fixed case where failing `asyncio.ensure_future` did not close the...Kumar Aditya2022-01-291-2/+8
* [3.10] bpo-46469: Make asyncio generic classes return GenericAlias (GH-30777)...Miss Islington (bot)2022-01-223-6/+6
* bpo-46278: fix typo introduced in GH-30427 (GH-30430) (GH-30431)Miss Islington (bot)2022-01-061-2/+2
* Reflect 'context' arg in 'AbstractEventLoop.call_*()' methods (GH-30427) (GH-...Miss Islington (bot)2022-01-061-4/+4
* bpo-46239: improve error message when importing `asyncio.windows_events` (GH-...Miss Islington (bot)2022-01-041-0/+5
* bpo-37658: Actually return result in race condition (GH-29202)Miss Islington (bot)2021-11-291-6/+2
* Cleanup a couple of comments left on PR 28775 post-merge. (GH-29079)Miss Islington (bot)2021-10-201-1/+1
* bpo-45416: Fix use of asyncio.Condition() with explicit Lock objects (GH-28850)Miss Islington (bot)2021-10-101-2/+0
* [3.10] Fix typos in the Lib directory (GH-28775) (GH-28804)Christian Clauss2021-10-072-3/+3
* Trivial typo in docstring (#27504)Miss Islington (bot)2021-07-311-1/+1
* bpo-44740: Lowercase "internet" and "web" where appropriate. (GH-27378) (GH-2...Miss Islington (bot)2021-07-261-1/+1
* [3.10] bpo-43945: [Enum] reduce scope of new format() behavior (GH-26752) Ethan Furman2021-06-181-2/+2
* bpo-44011: Revert "New asyncio ssl implementation (GH-17975)" (GH-25848)Pablo Galindo2021-05-037-721/+467
* bpo-44011: Fix asyncio tests without ssl module (GH-25840)Christian Heimes2021-05-031-1/+2
* bpo-44011: New asyncio ssl implementation (#17975)Andrew Svetlov2021-05-027-467/+720
* bpo-43989: Add signal format specifier for unix_events (GH-25769)Roberto Hueso2021-05-011-2/+2
* bpo-39529: Deprecate creating new event loop in asyncio.get_event_loop() (GH-...Serhiy Storchaka2021-04-254-27/+44
* bpo-41891: ensure asyncio.wait_for waits for task completion (#22461)Richard Kojedzinszky2020-12-181-1/+4
* bpo-38323: Add guard clauses in MultiLoopChildWatcher. (#22756)Chris Jerdonek2020-12-161-14/+18
* bpo-40364: asyncio uses os.waitstatus_to_exitcode() (GH-23798)Victor Stinner2020-12-161-19/+15
* bpo-42582: Remove asyncio._all_tasks_compat(). (GH-23664)Serhiy Storchaka2020-12-062-28/+0
* bpo-34215: Clarify IncompleteReadError message when "expected" is None (GH-21...Zackery Spytz2020-11-281-1/+2
* bpo-41241: Unnecessary Type casting in 'if condition' (GH-21396)Wansoo Kim2020-11-281-1/+1
* bpo-42392: Remove loop parameter from asyncio.tasks and asyncio.subprocess (G...Yurii Karabas2020-11-285-74/+25
* bpo-41332: Added missing connect_accepted_socket() to AbstractEventLoop (GH-2...Alex Grönholm2020-11-262-8/+14
* bpo-42392: Remove loop parameter from asyncio.streams (GH-23517)Yurii Karabas2020-11-261-28/+9
* bpo-42392: Improve removal of *loop* parameter in asyncio primitives (GH-23499)Yurii Karabas2020-11-253-14/+29
* bpo-42392: Remove loop parameter form asyncio locks and Queue (#23420)Yurii Karabas2020-11-244-67/+45
* bpo-42140: Improve asyncio.wait function (GH-22938)Diogo Dutra2020-11-101-2/+4
* bpo-42183: Fix a stack overflow error for asyncio Task or Future repr() (GH-2...Andrew Svetlov2020-11-101-3/+22
* bpo-42230: Improve asyncio documentation regarding accepting sets vs iterable...Jakub Stasiak2020-11-021-2/+2
* bpo-39651: Fix asyncio proactor _write_to_self() (GH-22197)Victor Stinner2020-09-122-9/+20
* bpo-41696: Fix handling of debug mode in asyncio.run (#22069)Shantanu2020-09-031-2/+3
* bpo-39010: Fix errors logged on proactor loop restart (#22017)Ben Darnell2020-08-312-2/+14