diff options
Diffstat (limited to 'Lib/test/test_interpreters.py')
-rw-r--r-- | Lib/test/test_interpreters.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_interpreters.py b/Lib/test/test_interpreters.py index 6266aa7..48c7119 100644 --- a/Lib/test/test_interpreters.py +++ b/Lib/test/test_interpreters.py @@ -5,7 +5,8 @@ from textwrap import dedent import unittest import time -import _xxsubinterpreters as _interpreters +from test.support import import_helper +_interpreters = import_helper.import_module('_xxsubinterpreters') from test.support import interpreters |