File indexing completed on 2024-04-28 15:53:59

0001 # AUTO-GENERATED FILE -- DO NOT EDIT
0002 
0003 """ This is an interface to Python's internal parser. """
0004 
0005 class ASTType(object):
0006   """ Intermediate representation of a Python parse tree. """
0007 
0008   pass
0009 
0010 class ParserError(Exception):
0011 
0012   pass
0013 
0014 __copyright__ = """Copyright 1995-1996 by Virginia Polytechnic Institute & State
0015 University, Blacksburg, Virginia, USA, and Fred L. Drake, Jr., Reston,
0016 Virginia, USA.  Portions copyright 1991-1995 by Stichting Mathematisch
0017 Centrum, Amsterdam, The Netherlands."""
0018 __package__ = None
0019 __version__ = '0.5'
0020 
0021 def _pickler():
0022   """ Returns the pickle magic to allow ST objects to be pickled. """
0023   pass
0024 
0025 def ast2list():
0026   """ Creates a list-tree representation of an ST. """
0027   pass
0028 
0029 def ast2tuple():
0030   """ Creates a tuple-tree representation of an ST. """
0031   pass
0032 
0033 def compileast():
0034   """ Compiles an ST object into a code object. """
0035   pass
0036 
0037 def compilest():
0038   """ Compiles an ST object into a code object. """
0039   pass
0040 
0041 def expr():
0042   """ Creates an ST object from an expression. """
0043   pass
0044 
0045 def isexpr():
0046   """ Determines if an ST object was created from an expression. """
0047   pass
0048 
0049 def issuite():
0050   """ Determines if an ST object was created from a suite. """
0051   pass
0052 
0053 def sequence2ast():
0054   """ Creates an ST object from a tree representation. """
0055   pass
0056 
0057 def sequence2st():
0058   """ Creates an ST object from a tree representation. """
0059   pass
0060 
0061 def st2list():
0062   """ Creates a list-tree representation of an ST. """
0063   pass
0064 
0065 def st2tuple():
0066   """ Creates a tuple-tree representation of an ST. """
0067   pass
0068 
0069 def suite():
0070   """ Creates an ST object from a suite. """
0071   pass
0072 
0073 def tuple2ast():
0074   """ Creates an ST object from a tree representation. """
0075   pass
0076 
0077 def tuple2st():
0078   """ Creates an ST object from a tree representation. """
0079   pass
0080