mirror of
https://github.com/python/cpython.git
synced 2025-07-19 09:15:34 +00:00

This should make the Linux distros happy as it is now easier to leave importlib's tests out of their base Python distribution.
7 lines
145 B
Python
7 lines
145 B
Python
import sys
|
|
|
|
assert 'errno' in sys.builtin_module_names
|
|
NAME = 'errno'
|
|
|
|
assert 'importlib' not in sys.builtin_module_names
|
|
BAD_NAME = 'importlib'
|