mirror of
https://github.com/python/cpython.git
synced 2025-10-09 08:31:26 +00:00
bpo-40275: Use new test.support helper submodules in tests (GH-21451)
This commit is contained in:
parent
a7f5d93bb6
commit
bb0424b122
20 changed files with 324 additions and 278 deletions
|
@ -4,9 +4,10 @@ import unittest
|
|||
from textwrap import dedent
|
||||
from contextlib import ExitStack
|
||||
from unittest import mock
|
||||
from test import support
|
||||
from test.support import import_helper
|
||||
|
||||
code = support.import_module('code')
|
||||
|
||||
code = import_helper.import_module('code')
|
||||
|
||||
|
||||
class TestInteractiveConsole(unittest.TestCase):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue