summaryrefslogtreecommitdiffstats
path: root/Lib/UserString.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/UserString.py')
-rwxr-xr-xLib/UserString.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/Lib/UserString.py b/Lib/UserString.py
index ed90b8d..8209820 100755
--- a/Lib/UserString.py
+++ b/Lib/UserString.py
@@ -173,10 +173,8 @@ if __name__ == "__main__":
# execute the regression test to stdout, if called as a script:
import os
called_in_dir, called_as = os.path.split(sys.argv[0])
- called_in_dir = os.path.abspath(called_in_dir)
called_as, py = os.path.splitext(called_as)
- sys.path.append(os.path.join(called_in_dir, 'test'))
if '-q' in sys.argv:
- import test_support
+ from test import test_support
test_support.verbose = 0
- __import__('test_' + called_as.lower())
+ __import__('test.test_' + called_as.lower())