index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
/
asyncio
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-47167: Allow overriding a future compliance check in asyncio.Task (GH-32197)
Andrew Svetlov
2022-04-01
1
-1/+5
*
bpo-39622: Interrupt the main asyncio task on Ctrl+C (GH-32105)
Andrew Svetlov
2022-03-30
1
-1/+36
*
bpo-27929: resolve names only for AF_INET/AF_INET6 with asyncio (GH-32131)
Vincent Bernat
2022-03-28
1
-1/+2
*
bpo-47062: Rename factory argument to loop_factory (GH-32113)
Andrew Svetlov
2022-03-25
1
-5/+5
*
bpo-43352: Add a Barrier object in asyncio lib (GH-24903)
Duprat
2022-03-25
2
-3/+161
*
bpo-47062: Implement asyncio.Runner context manager (GH-31799)
Andrew Svetlov
2022-03-24
1
-18/+106
*
bpo-46829: Deprecate passing a message into Future.cancel() and Task.cancel()...
Andrew Svetlov
2022-03-23
2
-0/+11
*
bpo-45997: Fix asyncio.Semaphore re-acquiring order (GH-31910)
Andrew Svetlov
2022-03-22
1
-6/+10
*
bpo-34790: Remove passing coroutine objects to asyncio.wait() (GH-31964)
Andrew Svetlov
2022-03-17
1
-10/+4
*
bpo-47039: Normalize repr() of asyncio future and task objects (GH-31950)
Andrew Svetlov
2022-03-17
4
-27/+19
*
bpo-43253: Don't call shutdown() for invalid socket handles (GH-31892)
Maximilian Hils
2022-03-15
1
-1/+1
*
Drop accidentally added whitespaces in asyncio internals (GH-31900)
Andrew Svetlov
2022-03-15
1
-1/+1
*
bpo-46994: Accept explicit contextvars.Context in asyncio create_task() API (...
Andrew Svetlov
2022-03-14
4
-10/+26
*
bpo-46805: Add low level UDP socket functions to asyncio (GH-31455)
Alex Grönholm
2022-03-13
4
-0/+165
*
bpo-46995: Deprecate missing asyncio.Task.set_name() for third-party task imp...
Andrew Svetlov
2022-03-13
1
-1/+4
*
bpo-46771: Implement asyncio context managers for handling timeouts (GH-31394)
Andrew Svetlov
2022-03-10
2
-0/+153
*
bpo-46955: Expose asyncio.base_events.Server as asyncio.Server (GH-31760)
Stefan Zabka
2022-03-08
1
-1/+1
*
Remove trailing spaces (GH-31695)
Serhiy Storchaka
2022-03-05
2
-4/+4
*
bpo-46771: Remove two controversial lines from Task.cancel() (GH-31623)
Guido van Rossum
2022-02-28
1
-2/+5
*
Taskgroup tweaks (GH-31559)
Tin Tvrtković
2022-02-26
1
-27/+23
*
bpo-46771: Implement task cancel requests counter (GH-31513)
Tin Tvrtković
2022-02-24
1
-9/+21
*
Inherit asyncio proactor datagram transport from asyncio.DatagramTransport (#...
Andrew Svetlov
2022-02-22
1
-1/+2
*
bpo-46827: pass sock.type to getaddrinfo in sock_connect (GH-31499)
Thomas Grainger
2022-02-22
1
-1/+3
*
bpo-45390: Propagate CancelledError's message from cancelled task to its awai...
Andrew Svetlov
2022-02-21
1
-0/+5
*
bpo-46796: Simplify handling of removed parameter "loop" in asyncio (GH-31431)
Serhiy Storchaka
2022-02-21
3
-22/+7
*
Raise TypeError if SSLSocket is passed to asyncio transport-based methods (GH...
Andrew Svetlov
2022-02-20
2
-10/+20
*
bpo-46672: fix `NameError` in `asyncio.gather` if type check fails (GH-31187)
Nikita Sobolev
2022-02-20
1
-1/+2
*
bpo-46752: Uniform TaskGroup.__repr__ (GH-31409)
Andrew Svetlov
2022-02-20
1
-8/+10
*
bpo-46752: Slight improvements to TaskGroup API (GH-31398)
Guido van Rossum
2022-02-18
1
-18/+4
*
bpo-46752: Add TaskGroup; add Task..cancelled(),.uncancel() (GH-31270)
Guido van Rossum
2022-02-15
4
-2/+252
*
bpo-46741: Update `asyncio.protocols.BufferedProtocol` docstring (31327)
Alex Waygood
2022-02-15
1
-4/+0
*
bpo-44011: New asyncio ssl implementation (#31275)
Kumar Aditya
2022-02-15
7
-467/+721
*
bpo-46487: Add `get_write_buffer_limits` to Write and _SSLProtocol transports...
Emiya
2022-02-01
2
-0/+12
*
bpo-26552: Fixed case where failing `asyncio.ensure_future` did not close the...
Kumar Aditya
2022-01-28
1
-2/+8
*
bpo-46469: Make asyncio generic classes return GenericAlias (GH-30777)
Kumar Aditya
2022-01-22
3
-6/+6
*
bpo-46310: simplify `for` loop in `asyncio/windows_events` (GH-30334)
Nikita Sobolev
2022-01-11
1
-1/+1
*
bpo-46278: fix typo introduced in GH-30427 (GH-30430)
Kumar Aditya
2022-01-06
1
-2/+2
*
Reflect 'context' arg in 'AbstractEventLoop.call_*()' methods (GH-30427)
Andrew Svetlov
2022-01-06
1
-4/+4
*
bpo-46239: improve error message when importing `asyncio.windows_events` (GH-...
Nikita Sobolev
2022-01-04
1
-0/+5
*
bpo-46238: reuse `_winapi` constants in `asyncio.windows_events` (GH-30352)
Nikita Sobolev
2022-01-04
1
-3/+3
*
bpo-23819: Fix asyncio tests on python optimized mode (GH-30195)
Kumar Aditya
2021-12-26
1
-2/+2
*
bpo-42413: Replace `concurrent.futures.TimeoutError` and `asyncio.TimeoutErro...
Kumar Aditya
2021-12-19
1
-2/+1
*
Re-add `reuse_address` parameter to `create_server` (GH-29733)
Jim Crist-Harif
2021-12-12
1
-0/+6
*
bpo-23819: asyncio: Replace AssertionError with TypeError where it makes sens...
Kumar Aditya
2021-12-06
2
-3/+8
*
bpo-37658: Actually return result in race condition (GH-29202)
Sam Bull
2021-11-29
1
-6/+2
*
Cleanup a couple of comments left on PR 28775 post-merge. (GH-29079)
Gregory P. Smith
2021-10-20
1
-1/+1
*
bpo-45416: Fix use of asyncio.Condition() with explicit Lock objects (GH-28850)
Joongi Kim
2021-10-10
1
-2/+0
*
Fix typos in the Lib directory (GH-28775)
Christian Clauss
2021-10-06
2
-3/+3
*
bpo-45129 Remove deprecated reuse_address (GH-28207)
Hugo van Kemenade
2021-09-08
1
-25/+2
*
Trivial typo in docstring
Jesús Cea
2021-07-31
1
-1/+1
[next]