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
/
test
/
test_asyncio
/
test_tasks.py
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
bpo-31787: Prevent refleaks when calling __init__() more than once (GH-3995)
Oren Milman
2018-02-13
1
-0/+14
*
bpo-32327: Revert loop.run_in_executor behaviour: return a Future. (#5392)
Yury Selivanov
2018-01-28
1
-3/+2
*
bpo-32636: Fix two bugs in test_asyncio (#5302)
Victor Stinner
2018-01-24
1
-1/+1
*
bpo-32636: Fix @asyncio.coroutine debug mode bug exposed by gh-5250 (#5291)
Nathaniel J. Smith
2018-01-24
1
-0/+17
*
bpo-32643: Drop support for a few private Task and Future APIs. (#5293)
Yury Selivanov
2018-01-24
1
-25/+3
*
bpo-32633: Fix some warnings in test_asyncio.test_tasks (#5280)
Nathaniel J. Smith
2018-01-23
1
-2/+8
*
bpo-32436: Implement PEP 567 (#5027)
Yury Selivanov
2018-01-23
1
-10/+99
*
bpo-31721: Allow Future._log_traceback to only be set to False (#5009)
Yury Selivanov
2017-12-25
1
-0/+9
*
bpo-32363: Disable Task.set_exception() and Task.set_result() (#4923)
Yury Selivanov
2017-12-25
1
-22/+71
*
bpo-32415: Fix "error is already set" (#4999)
Yury Selivanov
2017-12-23
1
-0/+26
*
bpo-32415: Add more tests (#4995)
Yury Selivanov
2017-12-23
1
-3/+21
*
bpo-32415: Add asyncio.Task.get_loop() and Future.get_loop() (#4992)
Yury Selivanov
2017-12-23
1
-5/+8
*
bpo-32357: Optimize asyncio.iscoroutine() for non-native coroutines (#4915)
Yury Selivanov
2017-12-19
1
-0/+43
*
bpo-32348: Optimize asyncio.Future schedule/add/remove callback. (#4907)
Yury Selivanov
2017-12-18
1
-6/+37
*
bpo-32250: Implement asyncio.current_task() and asyncio.all_tasks() (#4799)
Andrew Svetlov
2017-12-16
1
-23/+183
*
bpo-32311: Implement asyncio.create_task() shortcut (#4848)
Andrew Svetlov
2017-12-15
1
-0/+37
*
bpo-32327: Convert asyncio functions documented as coroutines to coroutines. ...
Yury Selivanov
2017-12-15
1
-7/+14
*
bpo-32101: Fix tests for PYTHONDEVMODE=1 (#4821)
Victor Stinner
2017-12-12
1
-7/+5
*
bpo-32273: Move asyncio.test_utils to test.test_asyncio (#4785)
Yury Selivanov
2017-12-11
1
-12/+3
*
bpo-32193: Convert asyncio to async/await usage (#4753)
Andrew Svetlov
2017-12-08
1
-147/+132
*
bpo-32047: -X dev enables asyncio debug mode (#4418)
Victor Stinner
2017-11-20
1
-0/+4
*
bpo-31970: Reduce performance overhead of asyncio debug mode. (#4314)
Antoine Pitrou
2017-11-07
1
-1/+1
*
bpo-30406: Make async and await proper keywords (#1669)
Jelle Zijlstra
2017-10-06
1
-6/+0
*
bpo-31556: asyncio.wait_for can cancel futures faster with timeout <= 0 (#3703)
Victor K
2017-10-05
1
-0/+70
*
bpo-31061: fix crash in asyncio speedup module (GH-2966)
Alexander Mohr
2017-08-02
1
-0/+15
*
bpo-30508: Don't log exceptions if Task/Future "cancel()" method called (#2050)
Yury Selivanov
2017-06-11
1
-0/+19
*
bpo-30048: asyncio: fix Task.cancel() was ignored. (GH-1097)
INADA Naoki
2017-05-11
1
-0/+18
*
bpo-29271: Fix Task.current_task and Task.all_tasks to accept None. (#406)
Yury Selivanov
2017-03-03
1
-0/+17
*
Remove unused imports.
Serhiy Storchaka
2016-12-16
1
-1/+0
*
Merge 3.6 (issue #28843)
Yury Selivanov
2016-12-01
1
-0/+15
*
Merge 3.5 (issue #28703)
Yury Selivanov
2016-11-15
1
-0/+2
|
\
|
*
Issue #28703: Fix asyncio.iscoroutinefunction to handle Mock objects.
Yury Selivanov
2016-11-15
1
-0/+2
*
|
Merge 3.5 (issue #28613)
Yury Selivanov
2016-11-04
1
-0/+5
|
\
\
|
|
/
|
*
Issue #28613: Fix get_event_loop() to return the current loop
Yury Selivanov
2016-11-04
1
-0/+5
*
|
Issue #28544: Implement asyncio.Task in C.
Yury Selivanov
2016-10-28
1
-134/+305
|
/
*
Issue #26923: Fix asyncio.Gather to refuse being cancelled once all children ...
Yury Selivanov
2016-10-21
1
-0/+30
*
Issue #27972: Prohibit Tasks to await on themselves.
Yury Selivanov
2016-10-09
1
-0/+11
*
Misc asyncio improvements from upstream
Guido van Rossum
2016-09-30
1
-0/+31
*
asyncio: Remove asyncio.timeout() context manager.
Yury Selivanov
2016-06-08
1
-187/+0
*
Fix test_asyncio.test_timeout_disable()
Victor Stinner
2016-04-18
1
-1/+3
*
asyncio: allow None as wait timeout
Victor Stinner
2016-04-01
1
-0/+16
*
asyncio: Fix @coroutine to recognize CoroWrapper (issue #25647)
Yury Selivanov
2016-03-02
1
-0/+24
*
test_asyncio: fix test_timeout_time()
Victor Stinner
2016-02-01
1
-1/+2
*
Sync with asyncio repo
Andrew Svetlov
2016-01-11
1
-0/+169
*
asyncio/tests: Fix a ResourceWarning due to unclosed loop
Yury Selivanov
2015-12-17
1
-0/+4
*
asyncio: Make Tasks check if Futures are attached to the same event loop
Yury Selivanov
2015-12-11
1
-0/+15
*
asyncio: Fix sporadic failing unittests in debug mode
Yury Selivanov
2015-11-13
1
-14/+18
*
asyncio: Optimize asyncio.sleep(0)
Yury Selivanov
2015-11-05
1
-0/+24
*
Docs and one small improvement for issue #25304, by Vincent Michel.
Guido van Rossum
2015-10-05
1
-0/+21
*
Issue #25304: Add asyncio.run_coroutine_threadsafe(). By Vincent Michel.
Guido van Rossum
2015-10-03
1
-0/+67
[prev]
[next]