Tryag File Manager
Home
||
Turbo Force
||
B-F Config_Cpanel
Current Path :
/
usr
/
local
/
lib
/
python3.9
/
ctypes
/
test
/
Or
Select Your Path :
Upload File :
New :
File
Dir
//usr/local/lib/python3.9/ctypes/test/__init__.py
import os import unittest from test import support # skip tests if _ctypes was not built ctypes = support.import_module('ctypes') ctypes_symbols = dir(ctypes) def need_symbol(name): return unittest.skipUnless(name in ctypes_symbols, '{!r} is required'.format(name)) def load_tests(*args): return support.load_package_tests(os.path.dirname(__file__), *args)