cpython/Lib/test/test_pyrepl/__init__.py
Miss Islington (bot) 031645a884
[3.14] gh-135621: Remove dependency on curses from PyREPL (GH-136758) (GH-136915)
(cherry picked from commit 09dfb50f1b)

Co-authored-by: Ɓukasz Langa <lukasz@langa.pl>
2025-07-21 13:02:41 +02:00

15 lines
275 B
Python

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)