diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2018-07-23 20:38:31 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-23 20:38:31 (GMT) |
commit | db8e3a1e4476620b2b5aaf57acfc3ef58a08213b (patch) | |
tree | 6c51752cf08dfc45f834834cae19c68debbef5bd | |
parent | 3fe5cccb08283f5f4817ac432560972a4c0f5290 (diff) | |
download | cpython-db8e3a1e4476620b2b5aaf57acfc3ef58a08213b.zip cpython-db8e3a1e4476620b2b5aaf57acfc3ef58a08213b.tar.gz cpython-db8e3a1e4476620b2b5aaf57acfc3ef58a08213b.tar.bz2 |
bpo-34183: Fix running Lib/test/test_contextlib_async.py as a script. (GH-8381)
-rw-r--r-- | Lib/test/test_contextlib_async.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_contextlib_async.py b/Lib/test/test_contextlib_async.py index 39dcd9b..57716ae 100644 --- a/Lib/test/test_contextlib_async.py +++ b/Lib/test/test_contextlib_async.py @@ -4,7 +4,7 @@ import functools from test import support import unittest -from .test_contextlib import TestBaseExitStack +from test.test_contextlib import TestBaseExitStack def _async_test(func): |