Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
2ce39631f679e14132a54dc90ce764259d26e166
/
Lib
/
asyncio
29f8429
bpo-40782: Change asyncio.AbstractEventLoop.run_in_executor to be a method not a coroutine (GH-21852)
by James Weaver
· 5 years ago
602a971
bpo-41467: Fix asyncio recv_into() on Windows (GH-21720)
by Victor Stinner
· 5 years ago
0dd98c2
bpo-41317: Remove reader on cancellation in asyncio.loop.sock_accept() (#21595)
by Alex Grönholm
· 5 years ago
d42528a
bpo-37703: improve asyncio.gather documentation regarding cancellation (GH-15312)
by Vinay Sharma
· 5 years ago
568fb0f
bpo-41273: asyncio's proactor read transport's better performance by using recv_into instead of recv (#21442)
by Tony Solomonik
· 5 years ago
004e64e
bpo-40967: Remove deprecated asyncio.Task.current_task() and asyncio.Task.all_tasks() (GH-20874)
by Rémi Lapeyre
· 5 years ago
2b20136
Fix asyncio.to_thread() documented return type (GH-20547)
by Kyle Stanley
· 5 years ago
210a137
bpo-30064: Fix asyncio loop.sock_* race condition issue (#20369)
by Fantix King
· 5 years ago
0f56263
bpo-32309: Add support for contextvars in asyncio.to_thread() (GH-20278)
by Kyle Stanley
· 5 years ago
f2947e3
s/wakup/wakeup (GH-20250)
by Kunal Bhalla
· 5 years ago
cc2bbc2
bpo-32309: Implement asyncio.to_thread() (GH-20143)
by Kyle Stanley
· 5 years ago
da742ba
bpo-31033: Improve the traceback for cancelled asyncio tasks (GH-19951)
by Chris Jerdonek
· 5 years ago
1ce5841
bpo-31033: Add a msg argument to Future.cancel() and Task.cancel() (GH-19979)
by Chris Jerdonek
· 5 years ago
382a563
bpo-40607: Reraise exception during task cancelation in asyncio.wait_for() (GH-20054)
by romasku
· 5 years ago
9054967
bpo-40443: Remove unused imports in the stdlib (GH-19803)
by Victor Stinner
· 5 years ago
02152b7
Fix typo from Lib/asyncio/events.py (GH-19410)
by Galden
· 5 years ago
4482337
bpo-39764: Make Task.get_stack accept ag_frame (#18669)
by Lidi Zheng
· 5 years ago
374d998
bpo-39609: set the thread_name_prefix for the default asyncio executor (GH-18458)
by Markus Mohrhard
· 5 years ago
90d9ba6
bpo-34793: Drop old-style context managers in asyncio.locks (GH-17533)
by Andrew Svetlov
· 6 years ago
0ca7cc7
bpo-38356: Fix ThreadedChildWatcher thread leak in test_asyncio (GH-16552)
by Kyle Stanley
· 6 years ago
10ac0cd
bpo-39191: Fix RuntimeWarning in asyncio test (GH-17863)
by Andrew Svetlov
· 6 years ago
3a5de51
Fix #39191: Don't spawn a task before failing (#17796)
by Andrew Svetlov
· 6 years ago
89aa7f0
bpo-34790: Implement deprecation of passing coroutines to asyncio.wait() (GH-16977)
by Kyle Stanley
· 6 years ago
025eeaa
Fix import path for asyncio.TimeoutError (#17691)
by Andrew Svetlov
· 6 years ago
ab513a3
bpo-37228: Fix loop.create_datagram_endpoint()'s usage of SO_REUSEADDR (#17311)
by Kyle Stanley
· 6 years ago
82b4950
bpo-39006: Fix asyncio when the ssl module is missing (GH-17524)
by Victor Stinner
· 6 years ago
892f9e0
bpo-37404: Raising value error if an SSLSocket is passed to asyncio functions (GH-16457)
by idomic
· 6 years ago
7ddcd0c
bpo-38529: Fix asyncio stream warning (GH-17474)
by Andrew Svetlov
· 6 years ago
dec3672
bpo-38978: Implement __class_getitem__ for asyncio objects (GH-17491)
by Batuhan Taşkaya
· 6 years ago
e76ee1a
bpo-38982: Fix asyncio PidfdChildWatcher on waitpid() error (GH-17477)
by Victor Stinner
· 6 years ago
99eb70a
bpo-38951: Use threading.main_thread() check in asyncio (GH-17433)
by Hill Ma
· 6 years ago
293dd23
Remove binding of captured exceptions when not used to reduce the chances of creating cycles (GH-17246)
by Pablo Galindo
· 6 years ago
3f8cebd
bpo-38692: Add asyncio.PidfdChildWatcher to __all__ (GH-17161)
by Kyle Stanley
· 6 years ago
3ccdd9b
closes bpo-38692: Add a pidfd child process watcher to asyncio. (GH-17069)
by Benjamin Peterson
· 6 years ago
dad6be5
bpo-38785: Prevent asyncio from crashing (GH-17144)
by Andrew Svetlov
· 6 years ago
1b53a24
bpo-34679: ProactorEventLoop only uses set_wakeup_fd() in main thread (GH-16901)
by Victor Stinner
· 6 years ago
b23a842
bpo-34344 Fix AbstractEventLoopPolicy.get_event_loop docstring (GH-16463)
by idomic
· 6 years ago
e407013
Fix and improve `asyncio.run()` docs (GH-16403)
by Kyle Stanley
· 6 years ago
6758e6e
bpo-38242: Revert "bpo-36889: Merge asyncio streams (GH-13251)" (#16482)
by Yury Selivanov
· 6 years ago
58498bc
bpo-38019: correctly handle pause/resume reading of closed asyncio unix pipe (GH-16472)
by Andrew Svetlov
· 6 years ago
edad4d8
bpo-38248: Fix inconsistent immediate asyncio.Task cancellation (GH-16330)
by Yury Selivanov
· 6 years ago
17deb16
bpo-38260: Add Docs on asyncio.run (GH-16337)
by Emmanuel Arias
· 6 years ago
9fdc64c
bpo-34037: Fix test_asyncio failure and add loop.shutdown_default_executor() (GH-15735)
by Kyle Stanley
· 6 years ago
9eb35ab
bpo-38148: Add slots to asyncio transports (GH-16077)
by Andrew Svetlov
· 6 years ago
d31b315
bpo-36889: Document Stream class and add docstrings (GH-14488)
by Xtreak
· 6 years ago
a488879
bpo-36373: Deprecate explicit loop in task and subprocess API (GH-16033)
by Andrew Svetlov
· 6 years ago
7264e92
bpo-36373: Fix deprecation warnings (GH-15889)
by Andrew Svetlov
· 6 years ago
12c122a
bpo-38066: Hide internal Stream methods (GH-15762)
by Andrew Svetlov
· 6 years ago
9008be3
bpo-36373: Deprecate explicit loop parameter in all public asyncio APIs [queue] (GH-13950)
by Emmanuel Arias
· 6 years ago
537877d
bpo-36373: Deprecate explicit loop parameter in all public asyncio APIs [locks] (GH-13920)
by Emmanuel Arias
· 6 years ago
39d87b5
Fix typos mostly in comments, docs and test names (GH-15209)
by Min ho Kim
· 6 years ago
1c06009
bpo-34679: Restore instantiation Windows IOCP event loop from non-main thread (#15492)
by Andrew Svetlov
· 6 years ago
662db12
bpo-37685: Fixed __eq__, __lt__ etc implementations in some classes. (GH-14952)
by Serhiy Storchaka
· 6 years ago
c4cacc8
Fix typos in comments, docs and test names (#15018)
by Min ho Kim
· 6 years ago
96e12d5
Fix typos in docs, comments and test assert messages (#14872)
by Min ho Kim
· 6 years ago
0d671c0
bpo-35621: Support running subprocesses in asyncio when loop is executed in non-main thread (GH-14344)
by Andrew Svetlov
· 6 years ago
97d15b1
Replace deprecation warning with RuntimeError (GH-14397)
by Andrew Svetlov
· 6 years ago
0237265
Use threadpool for reading from file in sendfile fallback mode (#14076)
by Andrew Svetlov
· 6 years ago
ef21523
bpo-37279: Fix asyncio sendfile support when extra data are sent in fallback mode. (GH-14075)
by Andrew Svetlov
· 6 years ago
65aa64f
bpo-36607: Eliminate RuntimeError raised by asyncio.all_tasks() (GH-13971)
by Andrew Svetlov
· 6 years ago
9aa7856
bpo-34767: Do not always create a collections.deque() in asyncio.Lock() (GH-13834)
by Zackery Spytz
· 6 years ago
6d64a8f
bpo-36373: Deprecate explicit loop parameter in all public asyncio APIs [streams] (GH-13671)
by Emmanuel Arias
· 6 years ago
7f9a2ae
Revert "bpo-34037, asyncio: add BaseEventLoop.wait_executor_on_close (GH-13786)" (#13802)
by Łukasz Langa
· 6 years ago
9535aff
Revert "bpo-35621: Support running subprocesses in asyncio when loop is executed in non-main thread (#13630)" (GH-13793)
by Andrew Svetlov
· 6 years ago
0f0a30f
bpo-34037, asyncio: add BaseEventLoop.wait_executor_on_close (GH-13786)
by Victor Stinner
· 6 years ago
0d70227
Fix typos in docs and docstrings (GH-13745)
by Xtreak
· 6 years ago
13ed079
bpo-35621: Support running subprocesses in asyncio when loop is executed in non-main thread (#13630)
by Andrew Svetlov
· 6 years ago
98ef920
bpo-36999: Add asyncio.Task.get_coro() (GH-13680)
by Alex Grönholm
· 6 years ago
744c08a
bpo-35246: fix support for path-like args in asyncio subprocess (GH-13628)
by 依云
· 6 years ago
bafd4b5
bpo-29883: Asyncio proactor udp (GH-13440)
by Andrew Svetlov
· 6 years ago
f0d4c64
bpo-36686: Improve the documentation of the std* params in loop.subprocess_exec (GH-13586)
by sbstp
· 6 years ago
23b4b69
bpo-36889: Merge asyncio streams (GH-13251)
by Andrew Svetlov
· 6 years ago
8cd5165
bpo-37027: Return a proxy socket object from transp.get_extra_info('socket') (GH-13530)
by Yury Selivanov
· 6 years ago
1f39c28
bpo-37035: Don't log OSError (GH-13548)
by Andrew Svetlov
· 6 years ago
431b540
bpo-32528: Make asyncio.CancelledError a BaseException. (GH-13528)
by Yury Selivanov
· 6 years ago
16cefb0
bpo-37028: asyncio REPL; activated via 'python -m asyncio'. (GH-13472)
by Yury Selivanov
· 6 years ago
d0ebf13
bpo-36932: use proper deprecation-removed directive (GH-13349)
by Matthias Bussonnier
· 6 years ago
9932fd9
bpo-35721: Close socket pair if Popen in _UnixSubprocessTransport fails (GH-11553)
by Niklas Fiekas
· 6 years ago
ac8eb8f
bpo-35545: Fix asyncio discarding IPv6 scopes (GH-11271)
by Erwan Le Pape
· 6 years ago
68b34a7
bpo-36921: Deprecate @coroutine for sake of async def (GH-13346)
by Andrew Svetlov
· 6 years ago
6e78900
bpo-35589: Prevent buffer copy in sock_sendall() (GH-11418)
by Andrew Svetlov
· 6 years ago
54b74fe
bpo-36801: Temporarily fix regression in writer.drain() (#13330)
by Andrew Svetlov
· 6 years ago
f12ba7c
bpo-36916: asyncio: Swallow unhandled write() exception (GH-13313)
by Andrew Svetlov
· 6 years ago
a076e4f
bpo-36802: Drop awrite()/aclose(), support await write() and await close() instead (#13099)
by Andrew Svetlov
· 6 years ago
1cc0ee7
bpo-36801: Fix waiting in StreamWriter.drain for closing SSL transport (GH-13098)
by Andrew Svetlov
· 6 years ago
b35acc5
bpo-35125: remove inner callback on outer cancellation in asyncio shield (GH-10340)
by Romain Picard
· 6 years ago
63deaa5
bpo-31922: Do not connect UDP sockets when broadcast is allowed (GH-423)
by Vincent Michel
· 6 years ago
ad4ed87
Forbid creating of stream objects outside of asyncio (#13101)
by Andrew Svetlov
· 6 years ago
88f07a8
bpo-33530: Implement Happy Eyeballs in asyncio, v2 (GH-7237)
by twisteroid ambassador
· 6 years ago
4737b92
bpo-24638: Improve the error message in asyncio.ensure_future() (#12848)
by Zackery Spytz
· 6 years ago
c1964e9
bpo-36613: call remove_done_callback if exception (GH-12800)
by gescheit
· 6 years ago
56065d4
bpo-34139: Remove unix datagram socket from FS before binding (GH-8323)
by Quentin Dawans
· 6 years ago
c5c6cda
asyncio: PendingDeprecationWarning -> DeprecationWarning (GH-12494)
by Inada Naoki
· 6 years ago
f683f46
bpo-34745: Fix asyncio sslproto memory issues (GH-12386)
by Fantix King
· 6 years ago
f345170
asyncio: use dict instead of OrderedDict (GH-11710)
by Inada Naoki
· 7 years ago
c9f872b
bpo-23846: Fix ProactorEventLoop._write_to_self() (GH-11566)
by Victor Stinner
· 7 years ago
b91140f
bpo-11555: Enhance IocpProactor.close() log again (GH-11563)
by Victor Stinner
· 7 years ago
b1e4573
bpo-34323: Enhance IocpProactor.close() log (GH-11555)
by Victor Stinner
· 7 years ago
fb2c346
asyncio: __del__() keep reference to warnings.warn (GH-11491)
by Victor Stinner
· 7 years ago
9b07681
IocpProactor: prevent modification if closed (GH-11494)
by Victor Stinner
· 7 years ago
Next »