summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_asyncio/test_tasks.py
diff options
context:
space:
mode:
authorAntoine Pitrou <pitrou@free.fr>2017-11-07 16:23:29 (GMT)
committerGitHub <noreply@github.com>2017-11-07 16:23:29 (GMT)
commit921e9432a1461bbf312c9c6dcc2b916be6c05fa0 (patch)
treefe7133dd95ad4d039de908df4af3bc71ef1f0bc8 /Lib/test/test_asyncio/test_tasks.py
parent1e5d54cfa031f1de9ee2d2e968e0551b6e2397b7 (diff)
downloadcpython-921e9432a1461bbf312c9c6dcc2b916be6c05fa0.zip
cpython-921e9432a1461bbf312c9c6dcc2b916be6c05fa0.tar.gz
cpython-921e9432a1461bbf312c9c6dcc2b916be6c05fa0.tar.bz2
bpo-31970: Reduce performance overhead of asyncio debug mode. (#4314)
* bpo-31970: Reduce performance overhead of asyncio debug mode.
Diffstat (limited to 'Lib/test/test_asyncio/test_tasks.py')
-rw-r--r--Lib/test/test_asyncio/test_tasks.py2
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 e23963a..1d77f9f 100644
--- a/Lib/test/test_asyncio/test_tasks.py
+++ b/Lib/test/test_asyncio/test_tasks.py
@@ -1981,7 +1981,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\(\)$'