class documentation

class PrintStmt(Statement): (source)

View In Hierarchy

Python 2 print statement
Method __init__ Undocumented
Method accept Undocumented
Class Variable __slots__ Undocumented
Instance Variable args Undocumented
Instance Variable newline Undocumented
Instance Variable target Undocumented

Inherited from Node (via Statement):

Method __str__ Undocumented

Inherited from Context (via Statement, Node):

Method get​_column Don't use. Use x.column.
Method get​_line Don't use. Use x.line.
Method set​_line If target is a node, pull line (and column) information into this node. If column is specified, this will override any column information coming from a node.
Instance Variable column Undocumented
Instance Variable end​_line Undocumented
Instance Variable line Undocumented
def __init__(self, args, newline, target=None): (source)

Undocumented

Parameters
args:List[Expression]Undocumented
newline:boolUndocumented
target:Optional[Expression]Undocumented
def accept(self, visitor): (source)

Undocumented

Parameters
visitor:StatementVisitor[T]Undocumented
Returns
TUndocumented
__slots__: tuple[str, ...] = (source)

Undocumented

args = (source)

Undocumented

newline = (source)

Undocumented

target = (source)

Undocumented