diff options
author | Antoine Pitrou <pitrou@free.fr> | 2017-11-07 17:50:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-07 17:50:48 +0100 |
commit | d8d218ffda6b7569625ff9edadbbc9a2b1055e32 (patch) | |
tree | 1c0346361bddaaf5febd26429f0464ee94b1a237 /Lib/test/test_asyncio/test_tasks.py | |
parent | 518c6b97868d9c665475a40567b0aa417afad607 (diff) | |
download | cpython-git-d8d218ffda6b7569625ff9edadbbc9a2b1055e32.tar.gz |
[3.6] bpo-31970: Reduce performance overhead of asyncio debug mode. (GH-4314) (#4322)
* bpo-31970: Reduce performance overhead of asyncio debug mode..
(cherry picked from commit 921e9432a1461bbf312c9c6dcc2b916be6c05fa0)
Diffstat (limited to 'Lib/test/test_asyncio/test_tasks.py')
-rw-r--r-- | Lib/test/test_asyncio/test_tasks.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_asyncio/test_tasks.py b/Lib/test/test_asyncio/test_tasks.py index 243faf6b04..42da1fa195 100644 --- a/Lib/test/test_asyncio/test_tasks.py +++ b/Lib/test/test_asyncio/test_tasks.py @@ -1918,7 +1918,7 @@ class BaseTaskTests: regex = (r'^<CoroWrapper %s\(?\)? .* at %s:%s, .*> ' r'was never yielded from\n' - r'Coroutine object created at \(most recent call last\):\n' + r'Coroutine object created at \(most recent call last, truncated to \d+ last lines\):\n' r'.*\n' r' File "%s", line %s, in test_coroutine_never_yielded\n' r' coro_noop\(\)$' |