blob: c12c207887e031d7de97a73a102147fc8f76d8a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# import the sipconfig.py for the normal or the debug build
import os
import sys
import sysconfig
sys.path.insert(0, os.path.join(sysconfig.get_path('platstdlib'), 'dist-packages'))
if 'd' in sys.abiflags:
try:
from pytdeconfig_d import *
from pytdeconfig_d import _pkg_config, _default_macros
except ImportError as msg:
raise ImportError('No module named pytdeconfig; package python3-pytde-dbg not installed')
else:
from pytdeconfig_nd import *
from pytdeconfig_nd import _pkg_config, _default_macros
|