Vega strike Python Modules doc
0.5.1
Documentation of the " Modules " folder of Vega strike
|
Data Structures | |
class | _C |
Functions | |
def | g |
Variables | |
tuple | NoneType = type(None) |
TypeType = type | |
ObjectType = object | |
IntType = int | |
LongType = long | |
FloatType = float | |
ComplexType = complex | |
StringType = str | |
UnicodeType = unicode | |
tuple | StringTypes = (StringType, UnicodeType) |
tuple | BufferType = type(buffer('')) |
TupleType = tuple | |
ListType = list | |
DictType = dict | |
tuple | FunctionType = type(_f) |
tuple | LambdaType = type(lambda: None) |
tuple | CodeType = type(_f.func_code) |
tuple | GeneratorType = type(g()) |
tuple | ClassType = type(_C) |
tuple | UnboundMethodType = type(_C._m) |
tuple | _x = _C() |
tuple | InstanceType = type(_x) |
tuple | MethodType = type(_x._m) |
tuple | BuiltinFunctionType = type(len) |
tuple | BuiltinMethodType = type([].append) |
tuple | ModuleType = type(sys) |
FileType = file | |
tuple | XRangeType = type(xrange(0)) |
tuple | tb = sys.exc_info() |
tuple | TracebackType = type(tb) |
tuple | FrameType = type(tb.tb_frame) |
tuple | SliceType = type(slice(0)) |
tuple | EllipsisType = type(Ellipsis) |
tuple | DictProxyType = type(TypeType.__dict__) |
Define names for all type symbols known in the standard interpreter. Types that are part of optional modules (e.g. array) are not listed.
tuple StringTypes = (StringType, UnicodeType) |