home *** CD-ROM | disk | FTP | other *** search
/ Netrunner 2004 October / NETRUNNER0410.ISO / regular / iria107a.lzh / script / site.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2000-11-17  |  8KB  |  252 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.0)
  3.  
  4. """Append module search paths for third-party packages to sys.path.
  5.  
  6. ****************************************************************
  7. * This module is automatically imported during initialization. *
  8. ****************************************************************
  9.  
  10. In earlier versions of Python (up to 1.5a3), scripts or modules that
  11. needed to use site-specific modules would place ``import site''
  12. somewhere near the top of their code.  Because of the automatic
  13. import, this is no longer necessary (but code that does it still
  14. works).
  15.  
  16. This will append site-specific paths to to the module search path.  On
  17. Unix, it starts with sys.prefix and sys.exec_prefix (if different) and
  18. appends lib/python<version>/site-packages as well as lib/site-python.
  19. On other platforms (mainly Mac and Windows), it uses just sys.prefix
  20. (and sys.exec_prefix, if different, but this is unlikely).  The
  21. resulting directories, if they exist, are appended to sys.path, and
  22. also inspected for path configuration files.
  23.  
  24. A path configuration file is a file whose name has the form
  25. <package>.pth; its contents are additional directories (one per line)
  26. to be added to sys.path.  Non-existing directories (or
  27. non-directories) are never added to sys.path; no directory is added to
  28. sys.path more than once.  Blank lines and lines beginning with
  29. \\code{#} are skipped.
  30.  
  31. For example, suppose sys.prefix and sys.exec_prefix are set to
  32. /usr/local and there is a directory /usr/local/lib/python1.5/site-packages
  33. with three subdirectories, foo, bar and spam, and two path
  34. configuration files, foo.pth and bar.pth.  Assume foo.pth contains the
  35. following:
  36.  
  37.   # foo package configuration
  38.   foo
  39.   bar
  40.   bletch
  41.  
  42. and bar.pth contains:
  43.  
  44.   # bar package configuration
  45.   bar
  46.  
  47. Then the following directories are added to sys.path, in this order:
  48.  
  49.   /usr/local/lib/python1.5/site-packages/bar
  50.   /usr/local/lib/python1.5/site-packages/foo
  51.  
  52. Note that bletch is omitted because it doesn't exist; bar precedes foo
  53. because bar.pth comes alphabetically before foo.pth; and spam is
  54. omitted because it is not mentioned in either path configuration file.
  55.  
  56. After these path manipulations, an attempt is made to import a module
  57. named sitecustomize, which can perform arbitrary additional
  58. site-specific customizations.  If this import fails with an
  59. ImportError exception, it is silently ignored.
  60.  
  61. """
  62. import sys
  63. import os
  64.  
  65. def makepath(*paths):
  66.     dir = os.path.join(*paths)
  67.     return os.path.normcase(os.path.abspath(dir))
  68.  
  69. L = sys.modules.values()
  70. for m in L:
  71.     pass
  72.  
  73. del m
  74. del L
  75. L = []
  76. for dir in sys.path:
  77.     dir = makepath(dir)
  78.  
  79. sys.path[:] = L
  80. del dir
  81. del L
  82.  
  83. def addsitedir(sitedir):
  84.     sitedir = makepath(sitedir)
  85.     if sitedir not in sys.path:
  86.         sys.path.append(sitedir)
  87.     
  88.     
  89.     try:
  90.         names = os.listdir(sitedir)
  91.     except os.error:
  92.         return None
  93.  
  94.     names = map(os.path.normcase, names)
  95.     names.sort()
  96.     for name in names:
  97.         pass
  98.     
  99.  
  100.  
  101. def addpackage(sitedir, name):
  102.     fullname = os.path.join(sitedir, name)
  103.     
  104.     try:
  105.         f = open(fullname)
  106.     except IOError:
  107.         return None
  108.  
  109.     while 1:
  110.         dir = f.readline()
  111.         if not dir:
  112.             break
  113.         
  114.         if dir[0] == '#':
  115.             continue
  116.         
  117.         if dir[-1] == '\n':
  118.             dir = dir[:-1]
  119.         
  120.         dir = makepath(sitedir, dir)
  121.         if dir not in sys.path and os.path.exists(dir):
  122.             sys.path.append(dir)
  123.         
  124.  
  125. prefixes = [
  126.     sys.prefix]
  127. if sys.exec_prefix != sys.prefix:
  128.     prefixes.append(sys.exec_prefix)
  129.  
  130. for prefix in prefixes:
  131.     if prefix:
  132.         for sitedir in sitedirs:
  133.             pass
  134.         
  135.     
  136.  
  137. if os.sep == ':':
  138.     exit = 'Use Cmd-Q to quit.'
  139. elif os.sep == '\\':
  140.     exit = 'Use Ctrl-Z plus Return to exit.'
  141. else:
  142.     exit = 'Use Ctrl-D (i.e. EOF) to exit.'
  143. import __builtin__
  144. __builtin__.quit = __builtin__.exit = exit
  145. del exit
  146.  
  147. class _Printer:
  148.     MAXLINES = 23
  149.     
  150.     def __init__(self, name, data, files = (), dirs = ()):
  151.         self._Printer__name = name
  152.         self._Printer__data = data
  153.         self._Printer__files = files
  154.         self._Printer__dirs = dirs
  155.         self._Printer__lines = None
  156.  
  157.     
  158.     def _Printer__setup(self):
  159.         if self._Printer__lines:
  160.             return None
  161.         
  162.         data = None
  163.         for dir in self._Printer__dirs:
  164.             for file in self._Printer__files:
  165.                 file = os.path.join(dir, file)
  166.                 
  167.                 try:
  168.                     fp = open(file)
  169.                     data = fp.read()
  170.                     fp.close()
  171.                 except IOError:
  172.                     0
  173.                     0
  174.                     self._Printer__files
  175.                 except:
  176.                     0
  177.  
  178.             
  179.         
  180.         if not data:
  181.             data = self._Printer__data
  182.         
  183.         self._Printer__lines = data.split('\n')
  184.         self._Printer__linecnt = len(self._Printer__lines)
  185.  
  186.     
  187.     def __repr__(self):
  188.         self._Printer__setup()
  189.         if len(self._Printer__lines) <= self.MAXLINES:
  190.             return '\n'.join(self._Printer__lines)
  191.         else:
  192.             return 'Type %s() to see the full %s text' % (self._Printer__name,) * 2
  193.  
  194.     
  195.     def __call__(self):
  196.         self._Printer__setup()
  197.         prompt = 'Hit Return for more, or q (and Return) to quit: '
  198.         lineno = 0
  199.         while 1:
  200.             
  201.             try:
  202.                 for i in range(lineno, lineno + self.MAXLINES):
  203.                     print self._Printer__lines[i]
  204.             except IndexError:
  205.                 break
  206.  
  207.             lineno += self.MAXLINES
  208.             key = None
  209.             while key is None:
  210.                 key = raw_input(prompt)
  211.                 if key not in ('', 'q'):
  212.                     key = None
  213.                 
  214.             if key == 'q':
  215.                 break
  216.             
  217.  
  218.  
  219. __builtin__.copyright = _Printer('copyright', sys.copyright)
  220. __builtin__.credits = _Printer('credits', 'Python development is led by BeOpen PythonLabs (www.pythonlabs.com).')
  221. here = os.path.dirname(os.__file__)
  222. __builtin__.license = _Printer('license', 'See http://www.pythonlabs.com/products/python2.0/license.html', [
  223.     'LICENSE.txt',
  224.     'LICENSE'], [
  225.     here,
  226.     os.path.join(here, os.pardir),
  227.     os.curdir])
  228. encoding = 'ascii'
  229. if encoding != 'ascii':
  230.     sys.setdefaultencoding(encoding)
  231.  
  232.  
  233. try:
  234.     import sitecustomize
  235. except ImportError:
  236.     pass
  237.  
  238. if hasattr(sys, 'setdefaultencoding'):
  239.     del sys.setdefaultencoding
  240.  
  241.  
  242. def _test():
  243.     print 'sys.path = ['
  244.     for dir in sys.path:
  245.         print '    %s,' % `dir`
  246.     
  247.     print ']'
  248.  
  249. if __name__ == '__main__':
  250.     _test()
  251.  
  252.