1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
# Debian-specific: Drop compatibility with python 3.10 or earlier
# Do not use jaraco.test, not packaged
# from jaraco.test.cpython import from_test_support, try_import
#os_helper = try_import('os_helper') or from_test_support(
# 'FS_NONASCII', 'skip_unless_symlink', 'temp_dir'
#)
#import_helper = try_import('import_helper') or from_test_support(
# 'modules_setup', 'modules_cleanup'
#)
# Debian-specific: Use Python standard library
from test.support import os_helper
from test.support import import_helper
|