summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_extcall.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_extcall.py')
-rw-r--r--Lib/test/test_extcall.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_extcall.py b/Lib/test/test_extcall.py
index 13265ea..11d39ec 100644
--- a/Lib/test/test_extcall.py
+++ b/Lib/test/test_extcall.py
@@ -8,6 +8,7 @@ We're going the use these types for extra testing
We're defining four helper functions
+ >>> from test import support
>>> def e(a,b):
... print(a, b)
@@ -522,7 +523,6 @@ Same with keyword only args:
import doctest
import unittest
-from test import support
def load_tests(loader, tests, pattern):
tests.addTest(doctest.DocTestSuite())