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 osexcept:print("""Could not import the standard "os" module.Please check your PYTHONPATH environment variable.""")sys.exit(1)try:import symbolexcept:print("""Could not import the standard "symbol" module. If this isa PC, you should add the dos_8x3 directory to your PYTHONPATH.""")sys.exit(1)for dir in sys.path:file = os.path.join(dir, "os.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 libregrtest # Standard Python tester.libregrtest.main()
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。