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
*
Fix asyncio.to_thread() documented return type (GH-20547)
Kyle Stanley
2020-05-31
1
-1/+1
*
bpo-30064: Fix asyncio loop.sock_* race condition issue (#20369)
Fantix King
2020-05-27
1
-16/+25
*
bpo-32309: Add support for contextvars in asyncio.to_thread() (GH-20278)
Kyle Stanley
2020-05-21
1
-2/+6
*
s/wakup/wakeup (GH-20250)
Kunal Bhalla
2020-05-20
1
-1/+1
*
bpo-32309: Implement asyncio.to_thread() (GH-20143)
Kyle Stanley
2020-05-19
2
-0/+23
*
bpo-31033: Improve the traceback for cancelled asyncio tasks (GH-19951)
Chris Jerdonek
2020-05-18
2
-19/+33
*
bpo-31033: Add a msg argument to Future.cancel() and Task.cancel() (GH-19979)
Chris Jerdonek
2020-05-15
3
-19/+36
*
bpo-40607: Reraise exception during task cancelation in asyncio.wait_for() (G...
romasku
2020-05-15
1
-1/+9
*
bpo-40443: Remove unused imports in the stdlib (GH-19803)
Victor Stinner
2020-04-30
2
-2/+0
*
Fix typo from Lib/asyncio/events.py (GH-19410)
Galden
2020-04-14
1
-1/+1
*
bpo-39764: Make Task.get_stack accept ag_frame (#18669)
Lidi Zheng
2020-03-02
1
-3/+10
*
bpo-39609: set the thread_name_prefix for the default asyncio executor (GH-18...
Markus Mohrhard
2020-02-27
1
-1/+3
*
bpo-34793: Drop old-style context managers in asyncio.locks (GH-17533)
Andrew Svetlov
2020-02-01
1
-83/+0
*
bpo-38356: Fix ThreadedChildWatcher thread leak in test_asyncio (GH-16552)
Kyle Stanley
2020-01-12
1
-1/+8
*
bpo-39191: Fix RuntimeWarning in asyncio test (GH-17863)
Andrew Svetlov
2020-01-07
1
-3/+3
*
Fix #39191: Don't spawn a task before failing (#17796)
Andrew Svetlov
2020-01-04
1
-3/+7
*
bpo-34790: Implement deprecation of passing coroutines to asyncio.wait() (GH-...
Kyle Stanley
2019-12-30
1
-0/+6
*
Fix import path for asyncio.TimeoutError (#17691)
Andrew Svetlov
2019-12-24
1
-2/+2
*
bpo-37228: Fix loop.create_datagram_endpoint()'s usage of SO_REUSEADDR (#17311)
Kyle Stanley
2019-12-09
1
-7/+18
*
bpo-39006: Fix asyncio when the ssl module is missing (GH-17524)
Victor Stinner
2019-12-09
1
-10/+10
*
bpo-37404: Raising value error if an SSLSocket is passed to asyncio function...
idomic
2019-12-07
1
-0/+10
*
bpo-38529: Fix asyncio stream warning (GH-17474)
Andrew Svetlov
2019-12-07
1
-18/+1
*
bpo-38978: Implement __class_getitem__ for asyncio objects (GH-17491)
Batuhan Taşkaya
2019-12-07
3
-0/+9
*
bpo-38982: Fix asyncio PidfdChildWatcher on waitpid() error (GH-17477)
Victor Stinner
2019-12-06
1
-2/+13
*
bpo-38951: Use threading.main_thread() check in asyncio (GH-17433)
Hill Ma
2019-12-05
2
-4/+3
*
Remove binding of captured exceptions when not used to reduce the chances of ...
Pablo Galindo
2019-11-19
2
-3/+3
*
bpo-38692: Add asyncio.PidfdChildWatcher to __all__ (GH-17161)
Kyle Stanley
2019-11-15
1
-1/+1
*
closes bpo-38692: Add a pidfd child process watcher to asyncio. (GH-17069)
Benjamin Peterson
2019-11-14
1
-0/+67
*
bpo-38785: Prevent asyncio from crashing (GH-17144)
Andrew Svetlov
2019-11-13
1
-1/+4
*
bpo-34679: ProactorEventLoop only uses set_wakeup_fd() in main thread (GH-16901)
Victor Stinner
2019-10-23
1
-3/+3
*
bpo-34344 Fix AbstractEventLoopPolicy.get_event_loop docstring (GH-16463)
idomic
2019-10-03
1
-2/+2
*
Fix and improve `asyncio.run()` docs (GH-16403)
Kyle Stanley
2019-10-01
1
-5/+1
*
bpo-38242: Revert "bpo-36889: Merge asyncio streams (GH-13251)" (#16482)
Yury Selivanov
2019-09-30
3
-1242/+112
*
bpo-38019: correctly handle pause/resume reading of closed asyncio unix pipe ...
Andrew Svetlov
2019-09-29
1
-0/+11
*
bpo-38248: Fix inconsistent immediate asyncio.Task cancellation (GH-16330)
Yury Selivanov
2019-09-25
1
-1/+1
*
bpo-38260: Add Docs on asyncio.run (GH-16337)
Emmanuel Arias
2019-09-25
1
-0/+4
*
bpo-34037: Fix test_asyncio failure and add loop.shutdown_default_executor() ...
Kyle Stanley
2019-09-19
3
-0/+34
*
bpo-38148: Add slots to asyncio transports (GH-16077)
Andrew Svetlov
2019-09-13
1
-0/+14
*
bpo-36889: Document Stream class and add docstrings (GH-14488)
Xtreak
2019-09-13
1
-0/+21
*
bpo-36373: Deprecate explicit loop in task and subprocess API (GH-16033)
Andrew Svetlov
2019-09-12
2
-2/+30
*
bpo-36373: Fix deprecation warnings (GH-15889)
Andrew Svetlov
2019-09-11
2
-2/+2
*
bpo-38066: Hide internal Stream methods (GH-15762)
Andrew Svetlov
2019-09-10
2
-11/+48
*
bpo-36373: Deprecate explicit loop parameter in all public asyncio APIs [queu...
Emmanuel Arias
2019-09-10
1
-0/+4
*
bpo-36373: Deprecate explicit loop parameter in all public asyncio APIs [loc...
Emmanuel Arias
2019-09-10
1
-12/+29
*
Fix typos mostly in comments, docs and test names (GH-15209)
Min ho Kim
2019-08-30
1
-2/+2
*
bpo-34679: Restore instantiation Windows IOCP event loop from non-main thread...
Andrew Svetlov
2019-08-26
1
-1/+4
*
bpo-37685: Fixed __eq__, __lt__ etc implementations in some classes. (GH-14952)
Serhiy Storchaka
2019-08-08
1
-12/+12
*
Fix typos in comments, docs and test names (#15018)
Min ho Kim
2019-07-30
2
-2/+2
*
Fix typos in docs, comments and test assert messages (#14872)
Min ho Kim
2019-07-21
1
-1/+1
*
bpo-35621: Support running subprocesses in asyncio when loop is executed in n...
Andrew Svetlov
2019-06-30
1
-29/+244
[next]