class Const(mixins.NoChildrenMixin, NodeNG, Instance): (source)
Constructor: Const(value, lineno, col_offset, parent, ...)
Class representing any constant including num, str, bool, None, bytes.
>>> import astroid >>> node = astroid.extract_node('(5, "This is a string.", True, None, b"bytes")') >>> node <Tuple.tuple l.1 at 0x7f23b2e358d0> >>> list(node.get_children()) [<Const.int l.1 at 0x7f23b2e35940>, <Const.str l.1 at 0x7f23b2e35978>, <Const.bool l.1 at 0x7f23b2e359b0>, <Const.NoneType l.1 at 0x7f23b2e359e8>, <Const.bytes l.1 at 0x7f23b2e35a20>]
Method | __getattr__ |
Undocumented |
Method | __init__ |
No summary |
Method | bool |
Determine the boolean value of this node. |
Method | getitem |
Get an item from this node if subscriptable. |
Method | has |
Check if the node has a custom __getattr__ or __getattribute__. |
Method | itered |
An iterator over the elements this node contains. |
Method | pytype |
Get the name of the type that this node represents. |
Instance Variable | kind |
"The string prefix. "u" for u-prefixed strings and None otherwise. Python 3.8+ only. |
Instance Variable | value |
The value that the constant represents. |
Class Variable | _other |
Node attributes that do not contain child nodes. |
Inherited from NoChildrenMixin
:
Method | get |
Undocumented |
Inherited from NodeNG
(via NoChildrenMixin
):
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 | 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 | next |
The next sibling statement node. |
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 | previous |
The previous sibling statement. |
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 | is |
Whether this node indicates a statement. |
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 | _get |
Undocumented |
Method | _get |
Undocumented |
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 | _astroid |
Node attributes that contain child nodes. |
Class Variable | _explicit |
Undocumented |
Class Variable | _other |
Attributes that contain AST-dependent fields. |
Inherited from Instance
(via NoChildrenMixin
, NodeNG
):
Method | display |
Undocumented |
Class Variable | special |
Undocumented |
Inherited from BaseInstance
(via NoChildrenMixin
, NodeNG
, Instance
):
Method | getattr |
Undocumented |
Method | igetattr |
inferred getattr |
Method | infer |
infer what a class instance is returning when called |
Method | _wrap |
wrap bound methods of attrs in a InstanceMethod proxies |
Inherited from Proxy
(via NoChildrenMixin
, NodeNG
, Instance
, BaseInstance
):
Instance Variable | _proxied |
Undocumented |
typing.Any
, lineno: int | None
= None, col_offset: int | None
= None, parent: NodeNG | None
= None, kind: str | None
= None, *, end_lineno: int | None
= None, end_col_offset: int | None
= None):
(source)
¶
astroid.nodes.NodeNG.__init__
Parameters | |
value:typing.Any | The value that the constant represents. |
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. |
kind:str | None | The string prefix. "u" for u-prefixed strings and None otherwise. Python 3.8+ only. |
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. |
astroid.nodes.NodeNG.bool_value
Determine the boolean value of this node.
Returns | |
bool | The boolean value of this node. |
astroid.bases.Instance.getitem
Get an item from this node if subscriptable.
Parameters | |
index:Const or Slice | The node to use as a subscript index. |
context | Undocumented |
Raises | |
AstroidTypeError | When the given index cannot be used as a subscript index, or if this node is not subscriptable. |
Check if the node has a custom __getattr__ or __getattribute__.
Returns | |
bool | True if the class has a custom
__getattr__ or __getattribute__, False otherwise.
For a Const this is always False. |
An iterator over the elements this node contains.
Returns | |
iterable(Const) | The contents of this node. |
Raises | |
TypeError | If this node does not represent something that is iterable. |
astroid.bases.Instance.pytype
Get the name of the type that this node represents.
Returns | |
str | The name of the type. |