blob: e374d5c5604d0eeed555e68b7523bfac72fd9101 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import importlib
import sys
__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
|