cpython/Lib/test/test_pyrepl/__init__.py

16 lines
275 B
Python
Raw Normal View History

import os
from test.support import load_package_tests
import unittest
try:
import termios
except ImportError:
raise unittest.SkipTest("termios required")
else:
del termios
def load_tests(*args):
return load_package_tests(os.path.dirname(__file__), *args)