💾 Archived View for tris.fyi › pydoc › parser captured on 2022-03-01 at 16:02:02. Gemini links have been rewritten to link to archived content
⬅️ Previous capture (2022-01-08)
-=-=-=-=-=-=-
This is an interface to Python's internal parser.
with_traceback(...) Exception.with_traceback(tb) -- set self.__traceback__ to tb and return self.
args = <attribute 'args' of 'BaseException' objects>
Intermediate representation of a Python parse tree.
compile(...) Compile this ST object into a code object.
isexpr(...) Determines if this ST object was created from an expression.
issuite(...) Determines if this ST object was created from a suite.
tolist(...) Creates a list-tree representation of this ST.
totuple(...) Creates a tuple-tree representation of this ST.
compilest(...) Compiles an ST object into a code object.
expr(...) Creates an ST object from an expression.
isexpr(...) Determines if an ST object was created from an expression.
issuite(...) Determines if an ST object was created from a suite.
sequence2st(...) Creates an ST object from a tree representation.
st2list(...) Creates a list-tree representation of an ST.
st2tuple(...) Creates a tuple-tree representation of an ST.
suite(...) Creates an ST object from a suite.
tuple2st(...) Creates an ST object from a tree representation.