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-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
*
asyncio: ensure_future() now understands awaitables
Yury Selivanov
2015-10-02
1
-0/+18
*
Issue #24867: Fix Task.get_stack() for 'async def' coroutines
Yury Selivanov
2015-08-14
1
-0/+32
*
Issue #24400: Fix CoroWrapper for 'async def' coroutines
Yury Selivanov
2015-06-24
1
-1/+2
*
asyncio: Support PEP 492. Issue #24017.
Yury Selivanov
2015-05-12
1
-2/+2
*
asyncio: async() function is deprecated in favour of ensure_future().
Yury Selivanov
2015-05-11
1
-21/+27
*
Sync asyncio changes from the main repo.
Yury Selivanov
2015-05-11
1
-2/+7
*
Asyncio issue 222 / PR 231 (Victor Stinner) -- fix @coroutine functions witho...
Guido van Rossum
2015-05-03
1
-21/+44
*
Closes #23219: cancelling asyncio.wait_for() now cancels the task
Victor Stinner
2015-01-15
1
-0/+27
*
asyncio: Truncate to 80 columns
Victor Stinner
2015-01-08
1
-4/+8
*
asyncio: sync with Tulip
Victor Stinner
2014-12-26
1
-5/+5
*
asyncio: sync with Tulip
Victor Stinner
2014-12-18
1
-2/+6
*
asyncio.test_tasks: Fix test_env_var_debug to use correct asyncio module
Yury Selivanov
2014-09-25
1
-4/+11
*
asyncio, Tulip issue 201: Fix a race condition in wait_for()
Victor Stinner
2014-08-28
1
-0/+15
*
asyncio: sync with Tulip
Victor Stinner
2014-07-29
1
-0/+6
*
asyncio: test_as_completed(): disable "slow callback" warning
Victor Stinner
2014-07-16
1
-0/+2
*
Issue #21163: Fix "destroy pending task" warning in test_wait_errors()
Victor Stinner
2014-07-16
1
-4/+7
*
asyncio: sync with Tulip
Victor Stinner
2014-07-11
1
-5/+4
*
asyncio: sync with Tulip
Victor Stinner
2014-07-10
1
-8/+3
*
asyncio: sync with Tulip
Victor Stinner
2014-07-10
1
-7/+42
*
asyncio: sync with Tulip
Victor Stinner
2014-07-08
1
-0/+3
*
Closes #21886, #21447: Fix a race condition in asyncio when setting the result
Victor Stinner
2014-07-05
1
-0/+4
*
asyncio: sync with Tulip
Victor Stinner
2014-07-02
1
-0/+11
*
asyncio: Fix test_sleep_cancel(): call_later() mock has no self parameter
Victor Stinner
2014-07-01
1
-2/+2
*
asyncio: sync with Tulip
Victor Stinner
2014-06-30
1
-0/+1
*
asyncio: sync with Tulip, add a new asyncio.coroutines module
Victor Stinner
2014-06-28
1
-17/+17
[next]