_ast (version 82160)
index
(built-in)

 
Classes
       
__builtin__.object
AST
alias
arguments
boolop
And
Or
cmpop
Eq
Gt
GtE
In
Is
IsNot
Lt
LtE
NotEq
NotIn
comprehension
excepthandler
ExceptHandler
expr
Attribute
BinOp
BoolOp
Call
Compare
Dict
DictComp
GeneratorExp
IfExp
Lambda
List
ListComp
Name
Num
Repr
Set
SetComp
Str
Subscript
Tuple
UnaryOp
Yield
expr_context
AugLoad
AugStore
Del
Load
Param
Store
keyword
mod
Expression
Interactive
Module
Suite
operator
Add
BitAnd
BitOr
BitXor
Div
FloorDiv
LShift
Mod
Mult
Pow
RShift
Sub
slice
Ellipsis
ExtSlice
Index
Slice
stmt
Assert
Assign
AugAssign
Break
ClassDef
Continue
Delete
Exec
Expr
For
FunctionDef
Global
If
Import
ImportFrom
Pass
Print
Raise
Return
TryExcept
TryFinally
While
With
unaryop
Invert
Not
UAdd
USub

 
class AST(__builtin__.object)
     Methods defined here:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes defined here:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T
_attributes = ()
_fields = ()

 
class Add(operator)
    
Method resolution order:
Add
operator
AST
__builtin__.object

Data and other attributes defined here:
_fields = ()

Data descriptors inherited from operator:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from operator:
_attributes = ()

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class And(boolop)
    
Method resolution order:
And
boolop
AST
__builtin__.object

Data and other attributes defined here:
_fields = ()

Data descriptors inherited from boolop:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from boolop:
_attributes = ()

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class Assert(stmt)
    
Method resolution order:
Assert
stmt
AST
__builtin__.object

Data and other attributes defined here:
_fields = ('test', 'msg')

Data descriptors inherited from stmt:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from stmt:
_attributes = ('lineno', 'col_offset')

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class Assign(stmt)
    
Method resolution order:
Assign
stmt
AST
__builtin__.object

Data and other attributes defined here:
_fields = ('targets', 'value')

Data descriptors inherited from stmt:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from stmt:
_attributes = ('lineno', 'col_offset')

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class Attribute(expr)
    
Method resolution order:
Attribute
expr
AST
__builtin__.object

Data and other attributes defined here:
_fields = ('value', 'attr', 'ctx')

Data descriptors inherited from expr:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from expr:
_attributes = ('lineno', 'col_offset')

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class AugAssign(stmt)
    
Method resolution order:
AugAssign
stmt
AST
__builtin__.object

Data and other attributes defined here:
_fields = ('target', 'op', 'value')

Data descriptors inherited from stmt:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from stmt:
_attributes = ('lineno', 'col_offset')

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class AugLoad(expr_context)
    
Method resolution order:
AugLoad
expr_context
AST
__builtin__.object

Data and other attributes defined here:
_fields = ()

Data descriptors inherited from expr_context:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from expr_context:
_attributes = ()

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class AugStore(expr_context)
    
Method resolution order:
AugStore
expr_context
AST
__builtin__.object

Data and other attributes defined here:
_fields = ()

Data descriptors inherited from expr_context:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from expr_context:
_attributes = ()

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class BinOp(expr)
    
Method resolution order:
BinOp
expr
AST
__builtin__.object

Data and other attributes defined here:
_fields = ('left', 'op', 'right')

Data descriptors inherited from expr:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from expr:
_attributes = ('lineno', 'col_offset')

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class BitAnd(operator)
    
Method resolution order:
BitAnd
operator
AST
__builtin__.object

Data and other attributes defined here:
_fields = ()

Data descriptors inherited from operator:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from operator:
_attributes = ()

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class BitOr(operator)
    
Method resolution order:
BitOr
operator
AST
__builtin__.object

Data and other attributes defined here:
_fields = ()

Data descriptors inherited from operator:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from operator:
_attributes = ()

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class BitXor(operator)
    
Method resolution order:
BitXor
operator
AST
__builtin__.object

Data and other attributes defined here:
_fields = ()

Data descriptors inherited from operator:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from operator:
_attributes = ()

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class BoolOp(expr)
    
Method resolution order:
BoolOp
expr
AST
__builtin__.object

Data and other attributes defined here:
_fields = ('op', 'values')

Data descriptors inherited from expr:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from expr:
_attributes = ('lineno', 'col_offset')

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class Break(stmt)
    
Method resolution order:
Break
stmt
AST
__builtin__.object

Data and other attributes defined here:
_fields = ()

Data descriptors inherited from stmt:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from stmt:
_attributes = ('lineno', 'col_offset')

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class Call(expr)
    
Method resolution order:
Call
expr
AST
__builtin__.object

Data and other attributes defined here:
_fields = ('func', 'args', 'keywords', 'starargs', 'kwargs')

Data descriptors inherited from expr:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from expr:
_attributes = ('lineno', 'col_offset')

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class ClassDef(stmt)
    
Method resolution order:
ClassDef
stmt
AST
__builtin__.object

Data and other attributes defined here:
_fields = ('name', 'bases', 'body', 'decorator_list')

Data descriptors inherited from stmt:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from stmt:
_attributes = ('lineno', 'col_offset')

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class Compare(expr)
    
Method resolution order:
Compare
expr
AST
__builtin__.object

Data and other attributes defined here:
_fields = ('left', 'ops', 'comparators')

Data descriptors inherited from expr:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from expr:
_attributes = ('lineno', 'col_offset')

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class Continue(stmt)
    
Method resolution order:
Continue
stmt
AST
__builtin__.object

Data and other attributes defined here:
_fields = ()

Data descriptors inherited from stmt:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from stmt:
_attributes = ('lineno', 'col_offset')

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class Del(expr_context)
    
Method resolution order:
Del
expr_context
AST
__builtin__.object

Data and other attributes defined here:
_fields = ()

Data descriptors inherited from expr_context:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from expr_context:
_attributes = ()

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class Delete(stmt)
    
Method resolution order:
Delete
stmt
AST
__builtin__.object

Data and other attributes defined here:
_fields = ('targets',)

Data descriptors inherited from stmt:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from stmt:
_attributes = ('lineno', 'col_offset')

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class Dict(expr)
    
Method resolution order:
Dict
expr
AST
__builtin__.object

Data and other attributes defined here:
_fields = ('keys', 'values')

Data descriptors inherited from expr:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from expr:
_attributes = ('lineno', 'col_offset')

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class DictComp(expr)
    
Method resolution order:
DictComp
expr
AST
__builtin__.object

Data and other attributes defined here:
_fields = ('key', 'value', 'generators')

Data descriptors inherited from expr:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from expr:
_attributes = ('lineno', 'col_offset')

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class Div(operator)
    
Method resolution order:
Div
operator
AST
__builtin__.object

Data and other attributes defined here:
_fields = ()

Data descriptors inherited from operator:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from operator:
_attributes = ()

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class Ellipsis(slice)
    
Method resolution order:
Ellipsis
slice
AST
__builtin__.object

Data and other attributes defined here:
_fields = ()

Data descriptors inherited from slice:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from slice:
_attributes = ()

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class Eq(cmpop)
    
Method resolution order:
Eq
cmpop
AST
__builtin__.object

Data and other attributes defined here:
_fields = ()

Data descriptors inherited from cmpop:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from cmpop:
_attributes = ()

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class ExceptHandler(excepthandler)
    
Method resolution order:
ExceptHandler
excepthandler
AST
__builtin__.object

Data and other attributes defined here:
_fields = ('type', 'name', 'body')

Data descriptors inherited from excepthandler:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from excepthandler:
_attributes = ('lineno', 'col_offset')

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class Exec(stmt)
    
Method resolution order:
Exec
stmt
AST
__builtin__.object

Data and other attributes defined here:
_fields = ('body', 'globals', 'locals')

Data descriptors inherited from stmt:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from stmt:
_attributes = ('lineno', 'col_offset')

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class Expr(stmt)
    
Method resolution order:
Expr
stmt
AST
__builtin__.object

Data and other attributes defined here:
_fields = ('value',)

Data descriptors inherited from stmt:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from stmt:
_attributes = ('lineno', 'col_offset')

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class Expression(mod)
    
Method resolution order:
Expression
mod
AST
__builtin__.object

Data and other attributes defined here:
_fields = ('body',)

Data descriptors inherited from mod:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from mod:
_attributes = ()

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class ExtSlice(slice)
    
Method resolution order:
ExtSlice
slice
AST
__builtin__.object

Data and other attributes defined here:
_fields = ('dims',)

Data descriptors inherited from slice:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from slice:
_attributes = ()

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class FloorDiv(operator)
    
Method resolution order:
FloorDiv
operator
AST
__builtin__.object

Data and other attributes defined here:
_fields = ()

Data descriptors inherited from operator:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from operator:
_attributes = ()

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class For(stmt)
    
Method resolution order:
For
stmt
AST
__builtin__.object

Data and other attributes defined here:
_fields = ('target', 'iter', 'body', 'orelse')

Data descriptors inherited from stmt:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from stmt:
_attributes = ('lineno', 'col_offset')

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class FunctionDef(stmt)
    
Method resolution order:
FunctionDef
stmt
AST
__builtin__.object

Data and other attributes defined here:
_fields = ('name', 'args', 'body', 'decorator_list')

Data descriptors inherited from stmt:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from stmt:
_attributes = ('lineno', 'col_offset')

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class GeneratorExp(expr)
    
Method resolution order:
GeneratorExp
expr
AST
__builtin__.object

Data and other attributes defined here:
_fields = ('elt', 'generators')

Data descriptors inherited from expr:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from expr:
_attributes = ('lineno', 'col_offset')

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class Global(stmt)
    
Method resolution order:
Global
stmt
AST
__builtin__.object

Data and other attributes defined here:
_fields = ('names',)

Data descriptors inherited from stmt:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from stmt:
_attributes = ('lineno', 'col_offset')

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class Gt(cmpop)
    
Method resolution order:
Gt
cmpop
AST
__builtin__.object

Data and other attributes defined here:
_fields = ()

Data descriptors inherited from cmpop:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from cmpop:
_attributes = ()

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class GtE(cmpop)
    
Method resolution order:
GtE
cmpop
AST
__builtin__.object

Data and other attributes defined here:
_fields = ()

Data descriptors inherited from cmpop:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from cmpop:
_attributes = ()

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class If(stmt)
    
Method resolution order:
If
stmt
AST
__builtin__.object

Data and other attributes defined here:
_fields = ('test', 'body', 'orelse')

Data descriptors inherited from stmt:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from stmt:
_attributes = ('lineno', 'col_offset')

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class IfExp(expr)
    
Method resolution order:
IfExp
expr
AST
__builtin__.object

Data and other attributes defined here:
_fields = ('test', 'body', 'orelse')

Data descriptors inherited from expr:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from expr:
_attributes = ('lineno', 'col_offset')

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class Import(stmt)
    
Method resolution order:
Import
stmt
AST
__builtin__.object

Data and other attributes defined here:
_fields = ('names',)

Data descriptors inherited from stmt:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from stmt:
_attributes = ('lineno', 'col_offset')

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class ImportFrom(stmt)
    
Method resolution order:
ImportFrom
stmt
AST
__builtin__.object

Data and other attributes defined here:
_fields = ('module', 'names', 'level')

Data descriptors inherited from stmt:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from stmt:
_attributes = ('lineno', 'col_offset')

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class In(cmpop)
    
Method resolution order:
In
cmpop
AST
__builtin__.object

Data and other attributes defined here:
_fields = ()

Data descriptors inherited from cmpop:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from cmpop:
_attributes = ()

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class Index(slice)
    
Method resolution order:
Index
slice
AST
__builtin__.object

Data and other attributes defined here:
_fields = ('value',)

Data descriptors inherited from slice:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from slice:
_attributes = ()

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class Interactive(mod)
    
Method resolution order:
Interactive
mod
AST
__builtin__.object

Data and other attributes defined here:
_fields = ('body',)

Data descriptors inherited from mod:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from mod:
_attributes = ()

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class Invert(unaryop)
    
Method resolution order:
Invert
unaryop
AST
__builtin__.object

Data and other attributes defined here:
_fields = ()

Data descriptors inherited from unaryop:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from unaryop:
_attributes = ()

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class Is(cmpop)
    
Method resolution order:
Is
cmpop
AST
__builtin__.object

Data and other attributes defined here:
_fields = ()

Data descriptors inherited from cmpop:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from cmpop:
_attributes = ()

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class IsNot(cmpop)
    
Method resolution order:
IsNot
cmpop
AST
__builtin__.object

Data and other attributes defined here:
_fields = ()

Data descriptors inherited from cmpop:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from cmpop:
_attributes = ()

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class LShift(operator)
    
Method resolution order:
LShift
operator
AST
__builtin__.object

Data and other attributes defined here:
_fields = ()

Data descriptors inherited from operator:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from operator:
_attributes = ()

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class Lambda(expr)
    
Method resolution order:
Lambda
expr
AST
__builtin__.object

Data and other attributes defined here:
_fields = ('args', 'body')

Data descriptors inherited from expr:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from expr:
_attributes = ('lineno', 'col_offset')

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class List(expr)
    
Method resolution order:
List
expr
AST
__builtin__.object

Data and other attributes defined here:
_fields = ('elts', 'ctx')

Data descriptors inherited from expr:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from expr:
_attributes = ('lineno', 'col_offset')

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class ListComp(expr)
    
Method resolution order:
ListComp
expr
AST
__builtin__.object

Data and other attributes defined here:
_fields = ('elt', 'generators')

Data descriptors inherited from expr:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from expr:
_attributes = ('lineno', 'col_offset')

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class Load(expr_context)
    
Method resolution order:
Load
expr_context
AST
__builtin__.object

Data and other attributes defined here:
_fields = ()

Data descriptors inherited from expr_context:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from expr_context:
_attributes = ()

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class Lt(cmpop)
    
Method resolution order:
Lt
cmpop
AST
__builtin__.object

Data and other attributes defined here:
_fields = ()

Data descriptors inherited from cmpop:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from cmpop:
_attributes = ()

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class LtE(cmpop)
    
Method resolution order:
LtE
cmpop
AST
__builtin__.object

Data and other attributes defined here:
_fields = ()

Data descriptors inherited from cmpop:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from cmpop:
_attributes = ()

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class Mod(operator)
    
Method resolution order:
Mod
operator
AST
__builtin__.object

Data and other attributes defined here:
_fields = ()

Data descriptors inherited from operator:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from operator:
_attributes = ()

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class Module(mod)
    
Method resolution order:
Module
mod
AST
__builtin__.object

Data and other attributes defined here:
_fields = ('body',)

Data descriptors inherited from mod:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from mod:
_attributes = ()

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class Mult(operator)
    
Method resolution order:
Mult
operator
AST
__builtin__.object

Data and other attributes defined here:
_fields = ()

Data descriptors inherited from operator:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from operator:
_attributes = ()

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class Name(expr)
    
Method resolution order:
Name
expr
AST
__builtin__.object

Data and other attributes defined here:
_fields = ('id', 'ctx')

Data descriptors inherited from expr:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from expr:
_attributes = ('lineno', 'col_offset')

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class Not(unaryop)
    
Method resolution order:
Not
unaryop
AST
__builtin__.object

Data and other attributes defined here:
_fields = ()

Data descriptors inherited from unaryop:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from unaryop:
_attributes = ()

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class NotEq(cmpop)
    
Method resolution order:
NotEq
cmpop
AST
__builtin__.object

Data and other attributes defined here:
_fields = ()

Data descriptors inherited from cmpop:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from cmpop:
_attributes = ()

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class NotIn(cmpop)
    
Method resolution order:
NotIn
cmpop
AST
__builtin__.object

Data and other attributes defined here:
_fields = ()

Data descriptors inherited from cmpop:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from cmpop:
_attributes = ()

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class Num(expr)
    
Method resolution order:
Num
expr
AST
__builtin__.object

Data and other attributes defined here:
_fields = ('n',)

Data descriptors inherited from expr:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from expr:
_attributes = ('lineno', 'col_offset')

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class Or(boolop)
    
Method resolution order:
Or
boolop
AST
__builtin__.object

Data and other attributes defined here:
_fields = ()

Data descriptors inherited from boolop:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from boolop:
_attributes = ()

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class Param(expr_context)
    
Method resolution order:
Param
expr_context
AST
__builtin__.object

Data and other attributes defined here:
_fields = ()

Data descriptors inherited from expr_context:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from expr_context:
_attributes = ()

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class Pass(stmt)
    
Method resolution order:
Pass
stmt
AST
__builtin__.object

Data and other attributes defined here:
_fields = ()

Data descriptors inherited from stmt:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from stmt:
_attributes = ('lineno', 'col_offset')

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class Pow(operator)
    
Method resolution order:
Pow
operator
AST
__builtin__.object

Data and other attributes defined here:
_fields = ()

Data descriptors inherited from operator:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from operator:
_attributes = ()

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class Print(stmt)
    
Method resolution order:
Print
stmt
AST
__builtin__.object

Data and other attributes defined here:
_fields = ('dest', 'values', 'nl')

Data descriptors inherited from stmt:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from stmt:
_attributes = ('lineno', 'col_offset')

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class RShift(operator)
    
Method resolution order:
RShift
operator
AST
__builtin__.object

Data and other attributes defined here:
_fields = ()

Data descriptors inherited from operator:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from operator:
_attributes = ()

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class Raise(stmt)
    
Method resolution order:
Raise
stmt
AST
__builtin__.object

Data and other attributes defined here:
_fields = ('type', 'inst', 'tback')

Data descriptors inherited from stmt:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from stmt:
_attributes = ('lineno', 'col_offset')

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class Repr(expr)
    
Method resolution order:
Repr
expr
AST
__builtin__.object

Data and other attributes defined here:
_fields = ('value',)

Data descriptors inherited from expr:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from expr:
_attributes = ('lineno', 'col_offset')

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class Return(stmt)
    
Method resolution order:
Return
stmt
AST
__builtin__.object

Data and other attributes defined here:
_fields = ('value',)

Data descriptors inherited from stmt:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from stmt:
_attributes = ('lineno', 'col_offset')

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class Set(expr)
    
Method resolution order:
Set
expr
AST
__builtin__.object

Data and other attributes defined here:
_fields = ('elts',)

Data descriptors inherited from expr:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from expr:
_attributes = ('lineno', 'col_offset')

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class SetComp(expr)
    
Method resolution order:
SetComp
expr
AST
__builtin__.object

Data and other attributes defined here:
_fields = ('elt', 'generators')

Data descriptors inherited from expr:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from expr:
_attributes = ('lineno', 'col_offset')

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class Slice(slice)
    
Method resolution order:
Slice
slice
AST
__builtin__.object

Data and other attributes defined here:
_fields = ('lower', 'upper', 'step')

Data descriptors inherited from slice:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from slice:
_attributes = ()

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class Store(expr_context)
    
Method resolution order:
Store
expr_context
AST
__builtin__.object

Data and other attributes defined here:
_fields = ()

Data descriptors inherited from expr_context:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from expr_context:
_attributes = ()

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class Str(expr)
    
Method resolution order:
Str
expr
AST
__builtin__.object

Data and other attributes defined here:
_fields = ('s',)

Data descriptors inherited from expr:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from expr:
_attributes = ('lineno', 'col_offset')

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class Sub(operator)
    
Method resolution order:
Sub
operator
AST
__builtin__.object

Data and other attributes defined here:
_fields = ()

Data descriptors inherited from operator:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from operator:
_attributes = ()

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class Subscript(expr)
    
Method resolution order:
Subscript
expr
AST
__builtin__.object

Data and other attributes defined here:
_fields = ('value', 'slice', 'ctx')

Data descriptors inherited from expr:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from expr:
_attributes = ('lineno', 'col_offset')

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class Suite(mod)
    
Method resolution order:
Suite
mod
AST
__builtin__.object

Data and other attributes defined here:
_fields = ('body',)

Data descriptors inherited from mod:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from mod:
_attributes = ()

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class TryExcept(stmt)
    
Method resolution order:
TryExcept
stmt
AST
__builtin__.object

Data and other attributes defined here:
_fields = ('body', 'handlers', 'orelse')

Data descriptors inherited from stmt:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from stmt:
_attributes = ('lineno', 'col_offset')

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class TryFinally(stmt)
    
Method resolution order:
TryFinally
stmt
AST
__builtin__.object

Data and other attributes defined here:
_fields = ('body', 'finalbody')

Data descriptors inherited from stmt:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from stmt:
_attributes = ('lineno', 'col_offset')

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class Tuple(expr)
    
Method resolution order:
Tuple
expr
AST
__builtin__.object

Data and other attributes defined here:
_fields = ('elts', 'ctx')

Data descriptors inherited from expr:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from expr:
_attributes = ('lineno', 'col_offset')

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class UAdd(unaryop)
    
Method resolution order:
UAdd
unaryop
AST
__builtin__.object

Data and other attributes defined here:
_fields = ()

Data descriptors inherited from unaryop:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from unaryop:
_attributes = ()

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class USub(unaryop)
    
Method resolution order:
USub
unaryop
AST
__builtin__.object

Data and other attributes defined here:
_fields = ()

Data descriptors inherited from unaryop:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from unaryop:
_attributes = ()

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class UnaryOp(expr)
    
Method resolution order:
UnaryOp
expr
AST
__builtin__.object

Data and other attributes defined here:
_fields = ('op', 'operand')

Data descriptors inherited from expr:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from expr:
_attributes = ('lineno', 'col_offset')

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class While(stmt)
    
Method resolution order:
While
stmt
AST
__builtin__.object

Data and other attributes defined here:
_fields = ('test', 'body', 'orelse')

Data descriptors inherited from stmt:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from stmt:
_attributes = ('lineno', 'col_offset')

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class With(stmt)
    
Method resolution order:
With
stmt
AST
__builtin__.object

Data and other attributes defined here:
_fields = ('context_expr', 'optional_vars', 'body')

Data descriptors inherited from stmt:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from stmt:
_attributes = ('lineno', 'col_offset')

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class Yield(expr)
    
Method resolution order:
Yield
expr
AST
__builtin__.object

Data and other attributes defined here:
_fields = ('value',)

Data descriptors inherited from expr:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from expr:
_attributes = ('lineno', 'col_offset')

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class alias(AST)
    
Method resolution order:
alias
AST
__builtin__.object

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
_fields = ('name', 'asname')

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T
_attributes = ()

 
class arguments(AST)
    
Method resolution order:
arguments
AST
__builtin__.object

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
_fields = ('args', 'vararg', 'kwarg', 'defaults')

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T
_attributes = ()

 
class boolop(AST)
    
Method resolution order:
boolop
AST
__builtin__.object

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
_attributes = ()
_fields = ()

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class cmpop(AST)
    
Method resolution order:
cmpop
AST
__builtin__.object

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
_attributes = ()
_fields = ()

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class comprehension(AST)
    
Method resolution order:
comprehension
AST
__builtin__.object

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
_fields = ('target', 'iter', 'ifs')

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T
_attributes = ()

 
class excepthandler(AST)
    
Method resolution order:
excepthandler
AST
__builtin__.object

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
_attributes = ('lineno', 'col_offset')
_fields = ()

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class expr(AST)
    
Method resolution order:
expr
AST
__builtin__.object

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
_attributes = ('lineno', 'col_offset')
_fields = ()

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class expr_context(AST)
    
Method resolution order:
expr_context
AST
__builtin__.object

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
_attributes = ()
_fields = ()

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class keyword(AST)
    
Method resolution order:
keyword
AST
__builtin__.object

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
_fields = ('arg', 'value')

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T
_attributes = ()

 
class mod(AST)
    
Method resolution order:
mod
AST
__builtin__.object

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
_attributes = ()
_fields = ()

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class operator(AST)
    
Method resolution order:
operator
AST
__builtin__.object

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
_attributes = ()
_fields = ()

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class slice(AST)
    
Method resolution order:
slice
AST
__builtin__.object

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
_attributes = ()
_fields = ()

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class stmt(AST)
    
Method resolution order:
stmt
AST
__builtin__.object

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
_attributes = ('lineno', 'col_offset')
_fields = ()

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class unaryop(AST)
    
Method resolution order:
unaryop
AST
__builtin__.object

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
_attributes = ()
_fields = ()

Methods inherited from AST:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
__reduce__(...)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Data and other attributes inherited from AST:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
Data
        PyCF_ONLY_AST = 1024
__version__ = '82160'