home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / usr / share / pyshared / sipconfig.py < prev    next >
Encoding:
Python Source  |  2010-04-18  |  430 b   |  14 lines

  1. # import the sipconfig.py for the normal or the debug build
  2.  
  3. import sys
  4.  
  5. if getattr(sys, "pydebug", False):
  6.     try:
  7.         from sipconfig_d import *
  8.         from sipconfig_d import _pkg_config, _default_macros
  9.     except ImportError, msg:
  10.         raise ImportError, 'No module named sipconfig; package python-sip4-dbg not installed'
  11. else:
  12.     from sipconfig_nd import *
  13.     from sipconfig_nd import _pkg_config, _default_macros
  14.