File: sipconfig_py3.snippet

package info (click to toggle)
sip4 4.19.14%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 3,748 kB
  • sloc: ansic: 31,716; yacc: 7,064; python: 2,552; lex: 849; makefile: 155; perl: 20; cpp: 4
file content (11 lines) | stat: -rw-r--r-- 461 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
if sys.version_info[1] == @MINORVERS@:
    if 'd' in sys.abiflags:
        try:
            from sipconfig_d@MINORVERS@ import *
            from sipconfig_d@MINORVERS@ import _pkg_config, _default_macros
        except ImportError:
            raise ImportError('No module named sipconfig; package python3-sip-dbg not installed')
    else:
        from sipconfig_nd@MINORVERS@ import *
        from sipconfig_nd@MINORVERS@ import _pkg_config, _default_macros