diff options
author | Tim Peters <tim.peters@gmail.com> | 2006-03-01 06:28:58 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2006-03-01 06:28:58 (GMT) |
commit | fe8a56680a01a9f4a7209df512d93a72b925c0a5 (patch) | |
tree | 242370dfd5591011f5a6f882a4004d9617e0ca4e /PC/testpy.py | |
parent | 1a572964507512f3becd0c934525bd3caf9cc1ac (diff) | |
download | cpython-fe8a56680a01a9f4a7209df512d93a72b925c0a5.zip cpython-fe8a56680a01a9f4a7209df512d93a72b925c0a5.tar.gz cpython-fe8a56680a01a9f4a7209df512d93a72b925c0a5.tar.bz2 |
Remove svn:mime-type (inexplicably set to a binary type),
and set svn:eol-style to native, on some text files.
Diffstat (limited to 'PC/testpy.py')
-rw-r--r-- | PC/testpy.py | 64 |
1 files changed, 32 insertions, 32 deletions
diff --git a/PC/testpy.py b/PC/testpy.py index fd1b1e4..f8746a3 100644 --- a/PC/testpy.py +++ b/PC/testpy.py @@ -1,32 +1,32 @@ -import sys
-
-# This is a test module for Python. It looks in the standard
-# places for various *.py files. If these are moved, you must
-# change this module too.
-
-try:
- import string
-except:
- print """Could not import the standard "string" module.
- Please check your PYTHONPATH environment variable."""
- sys.exit(1)
-
-try:
- import regex_syntax
-except:
- print """Could not import the standard "regex_syntax" module. If this is
- a PC, you should add the dos_8x3 directory to your PYTHONPATH."""
- sys.exit(1)
-
-import os
-
-for dir in sys.path:
- file = os.path.join(dir, "string.py")
- if os.path.isfile(file):
- test = os.path.join(dir, "test")
- if os.path.isdir(test):
- # Add the "test" directory to PYTHONPATH.
- sys.path = sys.path + [test]
-
-import regrtest # Standard Python tester.
-regrtest.main()
+import sys + +# This is a test module for Python. It looks in the standard +# places for various *.py files. If these are moved, you must +# change this module too. + +try: + import string +except: + print """Could not import the standard "string" module. + Please check your PYTHONPATH environment variable.""" + sys.exit(1) + +try: + import regex_syntax +except: + print """Could not import the standard "regex_syntax" module. If this is + a PC, you should add the dos_8x3 directory to your PYTHONPATH.""" + sys.exit(1) + +import os + +for dir in sys.path: + file = os.path.join(dir, "string.py") + if os.path.isfile(file): + test = os.path.join(dir, "test") + if os.path.isdir(test): + # Add the "test" directory to PYTHONPATH. + sys.path = sys.path + [test] + +import regrtest # Standard Python tester. +regrtest.main() |