class ExceptHandler(mixins.MultiLineBlockMixin, mixins.AssignTypeMixin, Statement): (source)
Constructor: ExceptHandler(lineno, col_offset, parent, end_lineno, ...)
Class representing an ast.ExceptHandler
. node.
An ExceptHandler
is an except block on a try-except.
>>> import astroid >>> node = astroid.extract_node(''' try: do_something() except Exception as error: print("Error!") ''') >>> node <TryExcept l.2 at 0x7f23b2e9d908> >>> node.handlers [<ExceptHandler l.4 at 0x7f23b2e9e860>]
Method | __init__ |
No summary |
Method | catch |
Check if this node handles any of the given |
Method | get |
Get the child nodes below this node. |
Method | postinit |
Do some setup after initialisation. |
Class Variable | assigned |
Returns the assigned statement (non inferred) according to the assignment type. See astroid/protocols.py for actual implementation. |
Instance Variable | body |
The contents of the block. |
Instance Variable | name |
The name that the caught exception is assigned to. |
Instance Variable | type |
The types that the block handles. |
Property | blockstart |
The line on which the beginning of this block ends. |
Class Variable | _astroid |
Node attributes that contain child nodes. |
Class Variable | _multi |
Undocumented |
Inherited from MultiLineBlockMixin
:
Method | _get |
Undocumented |
Method | _get |
Undocumented |
Method | _get |
Undocumented |
Property | _multi |
Undocumented |
Inherited from AssignTypeMixin
(via MultiLineBlockMixin
):
Method | assign |
Undocumented |
Method | _get |
method used in filter_stmts |
Inherited from Statement
(via MultiLineBlockMixin
, AssignTypeMixin
):
Method | next |
The next sibling statement node. |
Method | previous |
The previous sibling statement. |
Class Variable | is |
Whether this node indicates a statement. |
Inherited from NodeNG
(via MultiLineBlockMixin
, AssignTypeMixin
, Statement
):
Method | __repr__ |
Undocumented |
Method | __str__ |
Undocumented |
Method | accept |
Visit this node using the given visitor. |
Method | as |
Get the source code that this node represents. |
Method | block |
Get a range from the given line number to where this node ends. |
Method | bool |
Determine the boolean value of this node. |
Method | callable |
Whether this node defines something that is callable. |
Method | child |
Search for the sequence that contains this child. |
Method | eq |
Undocumented |
Method | frame |
The first parent frame node. |
Method | has |
Check if this node inherits from the given type. |
Method | infer |
Get a generator of the inferred values. |
Method | inferred |
Get a list of the inferred values. |
Method | instantiate |
Instantiate an instance of the defined class. |
Method | last |
An optimized version of list(get_children())[-1] |
Method | locate |
Find the field of this node that contains the given child. |
Method | node |
Yield parent, grandparent, etc until there are no more. |
Method | nodes |
Get the nodes (including this one or below) of the given types. |
Method | op |
Undocumented |
Method | op |
Undocumented |
Method | parent |
Check if this node is the parent of the given node. |
Method | repr |
Get a string representation of the AST from this node. |
Method | root |
Return the root node of the syntax tree. |
Method | scope |
The first parent node defining a new scope. These can be Module, FunctionDef, ClassDef, Lambda, or GeneratorExp nodes. |
Method | set |
Define that the given name is declared in the given statement node. |
Method | statement |
The first parent node, including self, marked as statement node. |
Class Variable | is |
Whether this node indicates a function. |
Class Variable | is |
Undocumented |
Class Variable | optional |
Whether this node optionally assigns a variable. |
Instance Variable | col |
The column that this node appears on in the source code. |
Instance Variable | end |
The end column this node appears on in the source code. Note: This is after the last symbol. |
Instance Variable | end |
The last line this node appears on in the source code. |
Instance Variable | lineno |
The line that this node appears on in the source code. |
Instance Variable | parent |
The parent node in the syntax tree. |
Property | fromlineno |
The first line that this node appears on in the source code. |
Property | tolineno |
The last line that this node appears on in the source code. |
Method | _fixed |
Attempt to find the line that this node appears on. |
Method | _get |
Undocumented |
Method | _infer |
we don't know how to resolve a statement by default |
Method | _infer |
Undocumented |
Method | _repr |
Get a name for nice representation. |
Class Variable | _explicit |
Undocumented |
Class Variable | _other |
Node attributes that do not contain child nodes. |
Class Variable | _other |
Attributes that contain AST-dependent fields. |
int | None
= None, col_offset: int | None
= None, parent: NodeNG | None
= None, *, end_lineno: int | None
= None, end_col_offset: int | None
= None):
(source)
¶
astroid.nodes.NodeNG.__init__
Parameters | |
lineno:int | None | The line that this node appears on in the source code. |
colint | None | The column that this node appears on in the source code. |
parent:NodeNG | None | The parent node in the syntax tree. |
endint | None | The last line this node appears on in the source code. |
endint | None | The end column this node appears on in the source code. Note: This is after the last symbol. |
Check if this node handles any of the given
Parameters | |
exceptions:list[ | The names of the exceptions to check for. |
Returns | |
bool | Undocumented |
NodeNG | None
= None, name: AssignName | None
= None, body: list[ NodeNG] | None
= None):
(source)
¶
Do some setup after initialisation.
:param body:The contents of the block.
Parameters | |
type:Tuple or NodeNG or None | The types that the block handles. |
name:AssignName | None | The name that the caught exception is assigned to. |
body:list[ | Undocumented |
Returns the assigned statement (non inferred) according to the assignment type. See astroid/protocols.py for actual implementation.
astroid.nodes.NodeNG._astroid_fields
Node attributes that contain child nodes.
This is redefined in most concrete classes.