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
*
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
*
Replace deprecation warning with RuntimeError (GH-14397)
Andrew Svetlov
2019-06-27
1
-4/+2
*
Use threadpool for reading from file in sendfile fallback mode (#14076)
Andrew Svetlov
2019-06-15
1
-1/+1
*
bpo-37279: Fix asyncio sendfile support when extra data are sent in fallback...
Andrew Svetlov
2019-06-15
1
-2/+2
*
bpo-36607: Eliminate RuntimeError raised by asyncio.all_tasks() (GH-13971)
Andrew Svetlov
2019-06-11
1
-6/+32
*
bpo-34767: Do not always create a collections.deque() in asyncio.Lock() (GH-1...
Zackery Spytz
2019-06-05
1
-2/+7
*
bpo-36373: Deprecate explicit loop parameter in all public asyncio APIs [str...
Emmanuel Arias
2019-06-05
1
-0/+16
*
Revert "bpo-34037, asyncio: add BaseEventLoop.wait_executor_on_close (GH-1378...
Łukasz Langa
2019-06-04
1
-3/+1
*
Revert "bpo-35621: Support running subprocesses in asyncio when loop is execu...
Andrew Svetlov
2019-06-04
1
-212/+28
*
bpo-34037, asyncio: add BaseEventLoop.wait_executor_on_close (GH-13786)
Victor Stinner
2019-06-03
1
-1/+3
*
Fix typos in docs and docstrings (GH-13745)
Xtreak
2019-06-02
1
-1/+1
*
bpo-35621: Support running subprocesses in asyncio when loop is executed in n...
Andrew Svetlov
2019-06-02
1
-28/+212
*
bpo-36999: Add asyncio.Task.get_coro() (GH-13680)
Alex Grönholm
2019-05-30
1
-0/+3
*
bpo-35246: fix support for path-like args in asyncio subprocess (GH-13628)
依云
2019-05-29
1
-5/+0
*
bpo-29883: Asyncio proactor udp (GH-13440)
Andrew Svetlov
2019-05-28
2
-16/+199
*
bpo-36686: Improve the documentation of the std* params in loop.subprocess_ex...
sbstp
2019-05-27
1
-1/+18
*
bpo-36889: Merge asyncio streams (GH-13251)
Andrew Svetlov
2019-05-27
4
-155/+1156
*
bpo-37027: Return a proxy socket object from transp.get_extra_info('socket') ...
Yury Selivanov
2019-05-27
4
-6/+215
*
bpo-37035: Don't log OSError (GH-13548)
Andrew Svetlov
2019-05-27
5
-11/+4
*
bpo-32528: Make asyncio.CancelledError a BaseException. (GH-13528)
Yury Selivanov
2019-05-27
12
-53/+130
*
bpo-37028: asyncio REPL; activated via 'python -m asyncio'. (GH-13472)
Yury Selivanov
2019-05-27
1
-0/+125
*
bpo-36932: use proper deprecation-removed directive (GH-13349)
Matthias Bussonnier
2019-05-21
1
-8/+8
*
bpo-35721: Close socket pair if Popen in _UnixSubprocessTransport fails (GH-1...
Niklas Fiekas
2019-05-20
1
-6/+12
*
bpo-35545: Fix asyncio discarding IPv6 scopes (GH-11271)
Erwan Le Pape
2019-05-17
1
-3/+3
*
bpo-36921: Deprecate @coroutine for sake of async def (GH-13346)
Andrew Svetlov
2019-05-16
3
-4/+14
*
bpo-35589: Prevent buffer copy in sock_sendall() (GH-11418)
Andrew Svetlov
2019-05-16
1
-7/+10
[next]