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-47167: Allow overriding a future compliance check in asyncio.Task (GH-32197)
Andrew Svetlov
2022-04-01
1
-1/+5
*
bpo-46829: Deprecate passing a message into Future.cancel() and Task.cancel()...
Andrew Svetlov
2022-03-23
1
-0/+5
*
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
1
-2/+2
*
bpo-46994: Accept explicit contextvars.Context in asyncio create_task() API (...
Andrew Svetlov
2022-03-14
1
-4/+12
*
bpo-46995: Deprecate missing asyncio.Task.set_name() for third-party task imp...
Andrew Svetlov
2022-03-13
1
-1/+4
*
bpo-46771: Remove two controversial lines from Task.cancel() (GH-31623)
Guido van Rossum
2022-02-28
1
-2/+5
*
bpo-46771: Implement task cancel requests counter (GH-31513)
Tin Tvrtković
2022-02-24
1
-9/+21
*
bpo-46672: fix `NameError` in `asyncio.gather` if type check fails (GH-31187)
Nikita Sobolev
2022-02-20
1
-1/+2
*
bpo-46752: Add TaskGroup; add Task..cancelled(),.uncancel() (GH-31270)
Guido van Rossum
2022-02-15
1
-1/+15
*
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
1
-2/+2
*
bpo-37658: Actually return result in race condition (GH-29202)
Sam Bull
2021-11-29
1
-6/+2
*
bpo-39529: Deprecate creating new event loop in asyncio.get_event_loop() (GH-...
Serhiy Storchaka
2021-04-25
1
-19/+23
*
bpo-41891: ensure asyncio.wait_for waits for task completion (#22461)
Richard Kojedzinszky
2020-12-18
1
-1/+4
*
bpo-42582: Remove asyncio._all_tasks_compat(). (GH-23664)
Serhiy Storchaka
2020-12-06
1
-24/+0
*
bpo-42392: Remove loop parameter from asyncio.tasks and asyncio.subprocess (G...
Yurii Karabas
2020-11-28
1
-42/+13
*
bpo-42392: Remove loop parameter form asyncio locks and Queue (#23420)
Yurii Karabas
2020-11-24
1
-1/+1
*
bpo-42140: Improve asyncio.wait function (GH-22938)
Diogo Dutra
2020-11-10
1
-2/+4
*
bpo-42230: Improve asyncio documentation regarding accepting sets vs iterable...
Jakub Stasiak
2020-11-02
1
-2/+2
*
bpo-37658: Fix asyncio.wait_for() to respect waited task status (#21894)
Elvis Pranskevichus
2020-08-26
1
-3/+6
*
bpo-32751: Wait for task cancel in asyncio.wait_for() when timeout <= 0 (#21895)
Elvis Pranskevichus
2020-08-26
1
-2/+7
*
bpo-37703: improve asyncio.gather documentation regarding cancellation (GH-15...
Vinay Sharma
2020-07-20
1
-0/+7
*
bpo-40967: Remove deprecated asyncio.Task.current_task() and asyncio.Task.all...
Rémi Lapeyre
2020-07-02
1
-28/+0
*
bpo-31033: Improve the traceback for cancelled asyncio tasks (GH-19951)
Chris Jerdonek
2020-05-18
1
-14/+12
*
bpo-31033: Add a msg argument to Future.cancel() and Task.cancel() (GH-19979)
Chris Jerdonek
2020-05-15
1
-12/+24
*
bpo-40607: Reraise exception during task cancelation in asyncio.wait_for() (G...
romasku
2020-05-15
1
-1/+9
*
bpo-34790: Implement deprecation of passing coroutines to asyncio.wait() (GH-...
Kyle Stanley
2019-12-30
1
-0/+6
*
bpo-38978: Implement __class_getitem__ for asyncio objects (GH-17491)
Batuhan Taşkaya
2019-12-07
1
-0/+3
*
bpo-38248: Fix inconsistent immediate asyncio.Task cancellation (GH-16330)
Yury Selivanov
2019-09-25
1
-1/+1
*
bpo-36373: Deprecate explicit loop in task and subprocess API (GH-16033)
Andrew Svetlov
2019-09-12
1
-2/+17
*
bpo-36607: Eliminate RuntimeError raised by asyncio.all_tasks() (GH-13971)
Andrew Svetlov
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
[next]