You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
359 B
15 lines
359 B
6 months ago
|
import sys
|
||
|
import importlib
|
||
|
|
||
|
__version__, _, _ = sys.version.partition(' ')
|
||
|
|
||
|
|
||
|
try:
|
||
|
# Allow Debian and pkgsrc (only) to customize system
|
||
|
# behavior. Ref pypa/distutils#2 and pypa/distutils#16.
|
||
|
# This hook is deprecated and no other environments
|
||
|
# should use it.
|
||
|
importlib.import_module('_distutils_system_mod')
|
||
|
except ImportError:
|
||
|
pass
|