2000-02-04 11:28:42 -04:00
|
|
|
"""Define names for all type symbols known in the standard interpreter.
|
|
|
|
|
|
|
|
Types that are part of optional modules (e.g. array) are not listed.
|
|
|
|
"""
|
2001-07-15 18:08:29 -03:00
|
|
|
from __future__ import generators
|
1994-06-23 08:53:27 -03:00
|
|
|
|
|
|
|
import sys
|
|
|
|
|
|
|
|
NoneType = type(None)
|
|
|
|
TypeType = type(NoneType)
|
|
|
|
|
|
|
|
IntType = type(0)
|
|
|
|
LongType = type(0L)
|
|
|
|
FloatType = type(0.0)
|
1996-02-12 20:04:31 -04:00
|
|
|
try:
|
1997-09-04 19:12:34 -03:00
|
|
|
ComplexType = type(complex(0,1))
|
1996-02-12 20:04:31 -04:00
|
|
|
except NameError:
|
1997-09-04 19:12:34 -03:00
|
|
|
pass
|
1994-06-23 08:53:27 -03:00
|
|
|
|
|
|
|
StringType = type('')
|
2000-03-10 19:18:11 -04:00
|
|
|
UnicodeType = type(u'')
|
1999-03-19 15:08:03 -04:00
|
|
|
BufferType = type(buffer(''))
|
1994-06-23 08:53:27 -03:00
|
|
|
|
|
|
|
TupleType = type(())
|
|
|
|
ListType = type([])
|
1995-02-27 09:14:15 -04:00
|
|
|
DictType = DictionaryType = type({})
|
1994-06-23 08:53:27 -03:00
|
|
|
|
1994-09-29 07:04:43 -03:00
|
|
|
def _f(): pass
|
|
|
|
FunctionType = type(_f)
|
1998-03-26 17:13:24 -04:00
|
|
|
LambdaType = type(lambda: None) # Same as FunctionType
|
1997-09-04 19:12:34 -03:00
|
|
|
try:
|
|
|
|
CodeType = type(_f.func_code)
|
|
|
|
except:
|
|
|
|
pass
|
1994-09-29 07:04:43 -03:00
|
|
|
|
2001-06-25 16:46:25 -03:00
|
|
|
def g():
|
|
|
|
yield 1
|
|
|
|
GeneratorType = type(g())
|
|
|
|
del g
|
|
|
|
|
1994-09-29 07:04:43 -03:00
|
|
|
class _C:
|
1997-09-04 19:12:34 -03:00
|
|
|
def _m(self): pass
|
1994-09-29 07:04:43 -03:00
|
|
|
ClassType = type(_C)
|
1998-03-26 17:13:24 -04:00
|
|
|
UnboundMethodType = type(_C._m) # Same as MethodType
|
1994-09-29 07:04:43 -03:00
|
|
|
_x = _C()
|
|
|
|
InstanceType = type(_x)
|
|
|
|
MethodType = type(_x._m)
|
|
|
|
|
|
|
|
BuiltinFunctionType = type(len)
|
1998-03-26 17:13:24 -04:00
|
|
|
BuiltinMethodType = type([].append) # Same as BuiltinFunctionType
|
1994-06-23 08:53:27 -03:00
|
|
|
|
|
|
|
ModuleType = type(sys)
|
|
|
|
|
1997-09-04 19:12:34 -03:00
|
|
|
try:
|
1998-12-19 19:53:33 -04:00
|
|
|
FileType = type(sys.__stdin__)
|
1997-09-04 19:12:34 -03:00
|
|
|
except:
|
|
|
|
pass
|
1994-06-23 08:53:27 -03:00
|
|
|
XRangeType = type(xrange(0))
|
|
|
|
|
|
|
|
try:
|
1997-09-04 19:12:34 -03:00
|
|
|
raise TypeError
|
1994-06-23 08:53:27 -03:00
|
|
|
except TypeError:
|
1997-09-04 19:12:34 -03:00
|
|
|
try:
|
1998-03-26 17:13:24 -04:00
|
|
|
tb = sys.exc_info()[2]
|
|
|
|
TracebackType = type(tb)
|
|
|
|
FrameType = type(tb.tb_frame)
|
1997-09-04 19:12:34 -03:00
|
|
|
except:
|
1998-03-26 17:13:24 -04:00
|
|
|
pass
|
1997-09-29 20:22:12 -03:00
|
|
|
tb = None; del tb
|
1994-06-23 08:53:27 -03:00
|
|
|
|
1996-10-11 13:00:06 -03:00
|
|
|
SliceType = type(slice(0))
|
1996-10-11 13:25:41 -03:00
|
|
|
EllipsisType = type(Ellipsis)
|
1996-10-11 13:00:06 -03:00
|
|
|
|
1998-03-26 17:13:24 -04:00
|
|
|
del sys, _f, _C, _x # Not for export
|