1import sys 2 3# This is a test module for Python. It looks in the standard 4# places for various *.py files. If these are moved, you must 5# change this module too. 6 7try: 8 import os 9except: 10 print("""Could not import the standard "os" module. 11 Please check your PYTHONPATH environment variable.""") 12 sys.exit(1) 13 14try: 15 import symbol 16except: 17 print("""Could not import the standard "symbol" module. If this is 18 a PC, you should add the dos_8x3 directory to your PYTHONPATH.""") 19 sys.exit(1) 20 21for dir in sys.path: 22 file = os.path.join(dir, "os.py") 23 if os.path.isfile(file): 24 test = os.path.join(dir, "test") 25 if os.path.isdir(test): 26 # Add the "test" directory to PYTHONPATH. 27 sys.path = sys.path + [test] 28 29import libregrtest # Standard Python tester. 30libregrtest.main() 31