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

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.0)
  3.  
  4. '''Define names for all type symbols known in the standard interpreter.
  5.  
  6. Types that are part of optional modules (e.g. array) are not listed.
  7. '''
  8. import sys
  9. NoneType = type(None)
  10. TypeType = type(NoneType)
  11. IntType = type(0)
  12. LongType = type(0x0L)
  13. FloatType = type(0.0)
  14.  
  15. try:
  16.     ComplexType = type(complex(0, 1))
  17. except NameError:
  18.     pass
  19.  
  20. StringType = type('')
  21. UnicodeType = type(u'')
  22. BufferType = type(buffer(''))
  23. TupleType = type(())
  24. ListType = type([])
  25. DictType = DictionaryType = type({ })
  26.  
  27. def _f():
  28.     pass
  29.  
  30. FunctionType = type(_f)
  31. LambdaType = type((lambda : None))
  32.  
  33. try:
  34.     CodeType = type(_f.func_code)
  35. except:
  36.     pass
  37.  
  38.  
  39. class _C:
  40.     
  41.     def _m(self):
  42.         pass
  43.  
  44.  
  45. ClassType = type(_C)
  46. UnboundMethodType = type(_C._m)
  47. _x = _C()
  48. InstanceType = type(_x)
  49. MethodType = type(_x._m)
  50. BuiltinFunctionType = type(len)
  51. BuiltinMethodType = type([].append)
  52. ModuleType = type(sys)
  53.  
  54. try:
  55.     FileType = type(sys.__stdin__)
  56. except:
  57.     pass
  58.  
  59. XRangeType = type(xrange(0))
  60.  
  61. try:
  62.     raise TypeError
  63. except TypeError:
  64.     
  65.     try:
  66.         tb = sys.exc_info()[2]
  67.         TracebackType = type(tb)
  68.         FrameType = type(tb.tb_frame)
  69.     except:
  70.         pass
  71.  
  72.     tb = None
  73.     del tb
  74.  
  75. SliceType = type(slice(0))
  76. EllipsisType = type(Ellipsis)
  77. del sys
  78. del _f
  79. del _C
  80. del _x
  81.