| |
- __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 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 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 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 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
|
|