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
/
tasks.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-36607: Eliminate RuntimeError raised by asyncio.all_tasks() (GH-13971)
Miss Islington (bot)
2019-06-11
1
-6/+32
*
bpo-36999: Add asyncio.Task.get_coro() (GH-13680)
Alex Grönholm
2019-05-30
1
-0/+3
*
bpo-32528: Make asyncio.CancelledError a BaseException. (GH-13528)
Yury Selivanov
2019-05-27
1
-4/+6
*
bpo-36932: use proper deprecation-removed directive (GH-13349)
Matthias Bussonnier
2019-05-21
1
-8/+8
*
bpo-36921: Deprecate @coroutine for sake of async def (GH-13346)
Andrew Svetlov
2019-05-16
1
-2/+4
*
bpo-35125: remove inner callback on outer cancellation in asyncio shield (GH-...
Romain Picard
2019-05-07
1
-2/+8
*
bpo-24638: Improve the error message in asyncio.ensure_future() (#12848)
Zackery Spytz
2019-05-03
1
-1/+2
*
bpo-36613: call remove_done_callback if exception (GH-12800)
gescheit
2019-05-03
1
-1/+2
*
asyncio: PendingDeprecationWarning -> DeprecationWarning (GH-12494)
Inada Naoki
2019-03-22
1
-2/+2
*
bpo-34970: Protect tasks weak set manipulation in asyncio.all_tasks() (GH-9837)
Andrew Svetlov
2018-10-13
1
-2/+6
*
asyncio/docs: Replace Python 4.0 -> 3.10 (GH-9579)
Yury Selivanov
2018-09-25
1
-6/+6
*
bpo-34728: Remove deprecate *loop* argument in asyncio.sleep (GH-9415)
João Júnior
2018-09-24
1
-3/+16
*
bpo-34622: Extract asyncio exceptions into a separate module (GH-9141)
Andrew Svetlov
2018-09-11
1
-12/+13
*
bpo-34270: Make it possible to name asyncio tasks (GH-8547)
Alex Grönholm
2018-08-08
1
-3/+32
*
bpo-32751: Wait for task cancellation in asyncio.wait_for() (GH-7216)
Elvis Pranskevichus
2018-05-29
1
-2/+21
*
bpo-32684: Fix gather to propagate cancel of itself with return_exceptions (G...
Yury Selivanov
2018-05-29
1
-1/+13
*
bpo-32610: Fix asyncio.all_tasks() to return only pending tasks. (GH-7174)
Yury Selivanov
2018-05-28
1
-1/+11
*
bpo-33505: Optimize asyncio.ensure_future by reordering if conditions (GH-6836)
jimmylai
2018-05-28
1
-5/+5
*
bpo-33584: Fix several minor bugs in asyncio. (GH-7003)
Serhiy Storchaka
2018-05-20
1
-1/+1
*
bpo-32643: Drop support for a few private Task and Future APIs. (#5293)
Yury Selivanov
2018-01-24
1
-14/+14
*
bpo-32436: Implement PEP 567 (#5027)
Yury Selivanov
2018-01-23
1
-8/+16
*
bpo-32363: Disable Task.set_exception() and Task.set_result() (#4923)
Yury Selivanov
2017-12-25
1
-7/+17
*
bpo-32415: Add asyncio.Task.get_loop() and Future.get_loop() (#4992)
Yury Selivanov
2017-12-23
1
-22/+17
*
bpo-32355: Optimize asyncio.gather() (#4913)
Yury Selivanov
2017-12-19
1
-42/+61
*
bpo-32351: Use fastpath in asyncio.sleep if delay<0 (#4908)
Andrew Svetlov
2017-12-17
1
-1/+1
*
bpo-32250: Implement asyncio.current_task() and asyncio.all_tasks() (#4799)
Andrew Svetlov
2017-12-16
1
-14/+87
*
bpo-32311: Implement asyncio.create_task() shortcut (#4848)
Andrew Svetlov
2017-12-15
1
-4/+19
*
bpo-32272: Remove asyncio.async() function. (#4784)
Yury Selivanov
2017-12-11
1
-21/+1
*
bpo-32262: Fix codestyle; use f-strings formatting where necessary. (#4775)
Yury Selivanov
2017-12-10
1
-35/+28
*
bpo-32193: Convert asyncio to async/await usage (#4753)
Andrew Svetlov
2017-12-08
1
-23/+31
*
asyncio: Remove asyncio/compat.py (#4606)
Victor Stinner
2017-11-28
1
-2/+1
*
bpo-31556: asyncio.wait_for can cancel futures faster with timeout <= 0 (#3703)
Victor K
2017-10-05
1
-0/+9
*
bpo-30508: Don't log exceptions if Task/Future "cancel()" method called (#2050)
Yury Selivanov
2017-06-11
1
-0/+1
*
bpo-30048: asyncio: fix Task.cancel() was ignored. (GH-1097)
INADA Naoki
2017-05-11
1
-1/+6
*
bpo-29617: Remove Python 3.3 support from asyncio (GH-232)
INADA Naoki
2017-04-25
1
-14/+10
*
bpo-30098: Clarify that run_coroutine_threadsafe expects asyncio.Future (GH...
Charles Renwick
2017-04-21
1
-1/+2
*
Issue #29314: Merge with 3.5
Mariatta Wijaya
2017-02-07
1
-1/+2
|
\
|
*
Issue #29314: Set the stacklevel to two in asyncio.async() Deprecation Warning
Mariatta Wijaya
2017-02-07
1
-1/+2
*
|
Issue #28544: Implement asyncio.Task in C.
Yury Selivanov
2016-10-28
1
-64/+16
|
/
*
Issue #26923: Fix asyncio.Gather to refuse being cancelled once all children ...
Yury Selivanov
2016-10-21
1
-2/+4
*
Issue #27972: Prohibit Tasks to await on themselves.
Yury Selivanov
2016-10-09
1
-7/+14
*
Misc asyncio improvements from upstream
Guido van Rossum
2016-09-30
1
-0/+4
*
Another asyncio sync.
Yury Selivanov
2016-09-15
1
-1/+6
*
Merge asyncio upstream.
Guido van Rossum
2016-09-09
1
-4/+4
*
Rename Future._blocking to _asyncio_future_blocking.
Guido van Rossum
2016-09-09
1
-3/+4
*
asyncio: Remove asyncio.timeout() context manager.
Yury Selivanov
2016-06-08
1
-53/+0
*
Issue #27041: asyncio: Add loop.create_future method
Yury Selivanov
2016-05-16
1
-5/+9
*
asyncio: allow None as wait timeout
Victor Stinner
2016-04-01
1
-6/+8
*
Sync with asyncio
Andrew Svetlov
2016-01-11
1
-1/+1
*
Sync with asyncio repo
Andrew Svetlov
2016-01-11
1
-0/+51
[next]