summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_eintr.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_eintr.py')
-rw-r--r--Lib/test/test_eintr.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_eintr.py b/Lib/test/test_eintr.py
index 8b5f507..111ead3 100644
--- a/Lib/test/test_eintr.py
+++ b/Lib/test/test_eintr.py
@@ -2,7 +2,8 @@ import os
import signal
import unittest
-from test import script_helper, support
+from test import support
+from test.support import script_helper
@unittest.skipUnless(os.name == "posix", "only supported on Unix")