3 % Copyright 1995 Virginia Polytechnic Institute and State University
4 % and Fred L. Drake, Jr. This copyright notice must be distributed on
5 % all copies, but this document otherwise may be distributed as part
6 % of the Python distribution. No fee may be charged for this document
7 % in any representation, either on paper or electronically. This
8 % restriction does not affect other elements in a distributed package
12 \section{\module{parser
} ---
13 Access parse trees of Python code.
}
14 \declaremodule{builtin
}{parser
}
15 \moduleauthor{Fred L. Drake, Jr.
}{fdrake@acm.org
}
16 \sectionauthor{Fred L. Drake, Jr.
}{fdrake@acm.org
}
18 \modulesynopsis{Access parse trees of Python source code.
}
20 \index{parsing!Python source code
}
22 The
\module{parser
} module provides an interface to Python's internal
23 parser and byte-code compiler. The primary purpose for this interface
24 is to allow Python code to edit the parse tree of a Python expression
25 and create executable code from this. This is better than trying
26 to parse and modify an arbitrary Python code fragment as a string
27 because parsing is performed in a manner identical to the code
28 forming the application. It is also faster.
30 The
\module{parser
} module was written and documented by Fred
31 L. Drake, Jr. (
\email{fdrake@acm.org
}).
%
32 \index{Drake, Fred L., Jr.
}
34 There are a few things to note about this module which are important
35 to making use of the data structures created. This is not a tutorial
36 on editing the parse trees for Python code, but some examples of using
37 the
\module{parser
} module are presented.
39 Most importantly, a good understanding of the Python grammar processed
40 by the internal parser is required. For full information on the
41 language syntax, refer to the
\emph{Python Language Reference
}. The
42 parser itself is created from a grammar specification defined in the file
43 \file{Grammar/Grammar
} in the standard Python distribution. The parse
44 trees stored in the AST objects created by this module are the
45 actual output from the internal parser when created by the
46 \function{expr()
} or
\function{suite()
} functions, described below. The AST
47 objects created by
\function{sequence2ast()
} faithfully simulate those
48 structures. Be aware that the values of the sequences which are
49 considered ``correct'' will vary from one version of Python to another
50 as the formal grammar for the language is revised. However,
51 transporting code from one Python version to another as source text
52 will always allow correct parse trees to be created in the target
53 version, with the only restriction being that migrating to an older
54 version of the interpreter will not support more recent language
55 constructs. The parse trees are not typically compatible from one
56 version to another, whereas source code has always been
59 Each element of the sequences returned by
\function{ast2list()
} or
60 \function{ast2tuple()
} has a simple form. Sequences representing
61 non-terminal elements in the grammar always have a length greater than
62 one. The first element is an integer which identifies a production in
63 the grammar. These integers are given symbolic names in the C header
64 file
\file{Include/graminit.h
} and the Python module
65 \module{symbol
}. Each additional element of the sequence represents
66 a component of the production as recognized in the input string: these
67 are always sequences which have the same form as the parent. An
68 important aspect of this structure which should be noted is that
69 keywords used to identify the parent node type, such as the keyword
70 \keyword{if
} in an
\constant{if_stmt
}, are included in the node tree without
71 any special treatment. For example, the
\keyword{if
} keyword is
72 represented by the tuple
\code{(
1, 'if')
}, where
\code{1} is the
73 numeric value associated with all
\code{NAME
} tokens, including
74 variable and function names defined by the user. In an alternate form
75 returned when line number information is requested, the same token
76 might be represented as
\code{(
1, 'if',
12)
}, where the
\code{12}
77 represents the line number at which the terminal symbol was found.
79 Terminal elements are represented in much the same way, but without
80 any child elements and the addition of the source text which was
81 identified. The example of the
\keyword{if
} keyword above is
82 representative. The various types of terminal symbols are defined in
83 the C header file
\file{Include/token.h
} and the Python module
86 The AST objects are not required to support the functionality of this
87 module, but are provided for three purposes: to allow an application
88 to amortize the cost of processing complex parse trees, to provide a
89 parse tree representation which conserves memory space when compared
90 to the Python list or tuple representation, and to ease the creation
91 of additional modules in C which manipulate parse trees. A simple
92 ``wrapper'' class may be created in Python to hide the use of AST
95 The
\module{parser
} module defines functions for a few distinct
96 purposes. The most important purposes are to create AST objects and
97 to convert AST objects to other representations such as parse trees
98 and compiled code objects, but there are also functions which serve to
99 query the type of parse tree represented by an AST object.
102 \subsection{Creating AST Objects
}
103 \label{Creating ASTs
}
105 AST objects may be created from source code or from a parse tree.
106 When creating an AST object from source, different functions are used
107 to create the
\code{'eval'
} and
\code{'exec'
} forms.
109 \begin{funcdesc
}{expr
}{string
}
110 The
\function{expr()
} function parses the parameter
\code{\var{string
}}
111 as if it were an input to
\samp{compile(
\var{string
}, 'eval')
}. If
112 the parse succeeds, an AST object is created to hold the internal
113 parse tree representation, otherwise an appropriate exception is
117 \begin{funcdesc
}{suite
}{string
}
118 The
\function{suite()
} function parses the parameter
\code{\var{string
}}
119 as if it were an input to
\samp{compile(
\var{string
}, 'exec')
}. If
120 the parse succeeds, an AST object is created to hold the internal
121 parse tree representation, otherwise an appropriate exception is
125 \begin{funcdesc
}{sequence2ast
}{sequence
}
126 This function accepts a parse tree represented as a sequence and
127 builds an internal representation if possible. If it can validate
128 that the tree conforms to the Python grammar and all nodes are valid
129 node types in the host version of Python, an AST object is created
130 from the internal representation and returned to the called. If there
131 is a problem creating the internal representation, or if the tree
132 cannot be validated, a
\exception{ParserError
} exception is thrown. An AST
133 object created this way should not be assumed to compile correctly;
134 normal exceptions thrown by compilation may still be initiated when
135 the AST object is passed to
\function{compileast()
}. This may indicate
136 problems not related to syntax (such as a
\exception{MemoryError
}
137 exception), but may also be due to constructs such as the result of
138 parsing
\code{del f(
0)
}, which escapes the Python parser but is
139 checked by the bytecode compiler.
141 Sequences representing terminal tokens may be represented as either
142 two-element lists of the form
\code{(
1, 'name')
} or as three-element
143 lists of the form
\code{(
1, 'name',
56)
}. If the third element is
144 present, it is assumed to be a valid line number. The line number
145 may be specified for any subset of the terminal symbols in the input
149 \begin{funcdesc
}{tuple2ast
}{sequence
}
150 This is the same function as
\function{sequence2ast()
}. This entry point
151 is maintained for backward compatibility.
155 \subsection{Converting AST Objects
}
156 \label{Converting ASTs
}
158 AST objects, regardless of the input used to create them, may be
159 converted to parse trees represented as list- or tuple- trees, or may
160 be compiled into executable code objects. Parse trees may be
161 extracted with or without line numbering information.
163 \begin{funcdesc
}{ast2list
}{ast
\optional{, line_info
}}
164 This function accepts an AST object from the caller in
165 \code{\var{ast
}} and returns a Python list representing the
166 equivelent parse tree. The resulting list representation can be used
167 for inspection or the creation of a new parse tree in list form. This
168 function does not fail so long as memory is available to build the
169 list representation. If the parse tree will only be used for
170 inspection,
\function{ast2tuple()
} should be used instead to reduce memory
171 consumption and fragmentation. When the list representation is
172 required, this function is significantly faster than retrieving a
173 tuple representation and converting that to nested lists.
175 If
\code{\var{line_info
}} is true, line number information will be
176 included for all terminal tokens as a third element of the list
177 representing the token. Note that the line number provided specifies
178 the line on which the token
\emph{ends
}. This information is
179 omitted if the flag is false or omitted.
182 \begin{funcdesc
}{ast2tuple
}{ast
\optional{, line_info
}}
183 This function accepts an AST object from the caller in
184 \code{\var{ast
}} and returns a Python tuple representing the
185 equivelent parse tree. Other than returning a tuple instead of a
186 list, this function is identical to
\function{ast2list()
}.
188 If
\code{\var{line_info
}} is true, line number information will be
189 included for all terminal tokens as a third element of the list
190 representing the token. This information is omitted if the flag is
194 \begin{funcdesc
}{compileast
}{ast
\optional{, filename
\code{ = '<ast>'
}}}
195 The Python byte compiler can be invoked on an AST object to produce
196 code objects which can be used as part of an
\code{exec
} statement or
197 a call to the built-in
\function{eval()
}\bifuncindex{eval
} function.
198 This function provides the interface to the compiler, passing the
199 internal parse tree from
\code{\var{ast
}} to the parser, using the
200 source file name specified by the
\code{\var{filename
}} parameter.
201 The default value supplied for
\code{\var{filename
}} indicates that
202 the source was an AST object.
204 Compiling an AST object may result in exceptions related to
205 compilation; an example would be a
\exception{SyntaxError
} caused by the
206 parse tree for
\code{del f(
0)
}: this statement is considered legal
207 within the formal grammar for Python but is not a legal language
208 construct. The
\exception{SyntaxError
} raised for this condition is
209 actually generated by the Python byte-compiler normally, which is why
210 it can be raised at this point by the
\module{parser
} module. Most
211 causes of compilation failure can be diagnosed programmatically by
212 inspection of the parse tree.
216 \subsection{Queries on AST Objects
}
217 \label{Querying ASTs
}
219 Two functions are provided which allow an application to determine if
220 an AST was created as an expression or a suite. Neither of these
221 functions can be used to determine if an AST was created from source
222 code via
\function{expr()
} or
\function{suite()
} or from a parse tree
223 via
\function{sequence2ast()
}.
225 \begin{funcdesc
}{isexpr
}{ast
}
226 When
\code{\var{ast
}} represents an
\code{'eval'
} form, this function
227 returns true, otherwise it returns false. This is useful, since code
228 objects normally cannot be queried for this information using existing
229 built-in functions. Note that the code objects created by
230 \function{compileast()
} cannot be queried like this either, and are
231 identical to those created by the built-in
232 \function{compile()
}\bifuncindex{compile
} function.
236 \begin{funcdesc
}{issuite
}{ast
}
237 This function mirrors
\function{isexpr()
} in that it reports whether an
238 AST object represents an
\code{'exec'
} form, commonly known as a
239 ``suite.'' It is not safe to assume that this function is equivelent
240 to
\samp{not isexpr(
\var{ast
})
}, as additional syntactic fragments may
241 be supported in the future.
245 \subsection{Exceptions and Error Handling
}
248 The parser module defines a single exception, but may also pass other
249 built-in exceptions from other portions of the Python runtime
250 environment. See each function for information about the exceptions
253 \begin{excdesc
}{ParserError
}
254 Exception raised when a failure occurs within the parser module. This
255 is generally produced for validation failures rather than the built in
256 \exception{SyntaxError
} thrown during normal parsing.
257 The exception argument is either a string describing the reason of the
258 failure or a tuple containing a sequence causing the failure from a parse
259 tree passed to
\function{sequence2ast()
} and an explanatory string. Calls to
260 \function{sequence2ast()
} need to be able to handle either type of exception,
261 while calls to other functions in the module will only need to be
262 aware of the simple string values.
265 Note that the functions
\function{compileast()
},
\function{expr()
}, and
266 \function{suite()
} may throw exceptions which are normally thrown by the
267 parsing and compilation process. These include the built in
268 exceptions
\exception{MemoryError
},
\exception{OverflowError
},
269 \exception{SyntaxError
}, and
\exception{SystemError
}. In these cases, these
270 exceptions carry all the meaning normally associated with them. Refer
271 to the descriptions of each function for detailed information.
274 \subsection{AST Objects
}
277 AST objects returned by
\function{expr()
},
\function{suite()
} and
278 \function{sequence2ast()
} have no methods of their own.
280 Ordered and equality comparisons are supported between AST objects.
281 Pickling of AST objects (using the
\module{pickle
} module) is also
284 \begin{datadesc
}{ASTType
}
285 The type of the objects returned by
\function{expr()
},
286 \function{suite()
} and
\function{sequence2ast()
}.
290 AST objects have the following methods:
293 \begin{methoddesc
}[AST
]{compile
}{\optional{filename
}}
294 Same as
\code{compileast(
\var{ast
},
\var{filename
})
}.
297 \begin{methoddesc
}[AST
]{isexpr
}{}
298 Same as
\code{isexpr(
\var{ast
})
}.
301 \begin{methoddesc
}[AST
]{issuite
}{}
302 Same as
\code{issuite(
\var{ast
})
}.
305 \begin{methoddesc
}[AST
]{tolist
}{\optional{line_info
}}
306 Same as
\code{ast2list(
\var{ast
},
\var{line_info
})
}.
309 \begin{methoddesc
}[AST
]{totuple
}{\optional{line_info
}}
310 Same as
\code{ast2tuple(
\var{ast
},
\var{line_info
})
}.
314 \subsection{Examples
}
315 \nodename{AST Examples
}
317 The parser modules allows operations to be performed on the parse tree
318 of Python source code before the bytecode is generated, and provides
319 for inspection of the parse tree for information gathering purposes.
320 Two examples are presented. The simple example demonstrates emulation
321 of the
\function{compile()
}\bifuncindex{compile
} built-in function and
322 the complex example shows the use of a parse tree for information
325 \subsubsection{Emulation of
\function{compile()
}}
327 While many useful operations may take place between parsing and
328 bytecode generation, the simplest operation is to do nothing. For
329 this purpose, using the
\module{parser
} module to produce an
330 intermediate data structure is equivelent to the code
333 >>> code = compile('a +
5', 'eval')
339 The equivelent operation using the
\module{parser
} module is somewhat
340 longer, and allows the intermediate internal parse tree to be retained
345 >>> ast = parser.expr('a +
5')
346 >>> code = parser.compileast(ast)
352 An application which needs both AST and code objects can package this
353 code into readily available functions:
358 def load_suite(source_string):
359 ast = parser.suite(source_string)
360 code = parser.compileast(ast)
363 def load_expression(source_string):
364 ast = parser.expr(source_string)
365 code = parser.compileast(ast)
369 \subsubsection{Information Discovery
}
371 Some applications benefit from direct access to the parse tree. The
372 remainder of this section demonstrates how the parse tree provides
373 access to module documentation defined in docstrings without requiring
374 that the code being examined be loaded into a running interpreter via
375 \keyword{import
}. This can be very useful for performing analyses of
378 Generally, the example will demonstrate how the parse tree may be
379 traversed to distill interesting information. Two functions and a set
380 of classes are developed which provide programmatic access to high
381 level function and class definitions provided by a module. The
382 classes extract information from the parse tree and provide access to
383 the information at a useful semantic level, one function provides a
384 simple low-level pattern matching capability, and the other function
385 defines a high-level interface to the classes by handling file
386 operations on behalf of the caller. All source files mentioned here
387 which are not part of the Python installation are located in the
388 \file{Demo/parser/
} directory of the distribution.
390 The dynamic nature of Python allows the programmer a great deal of
391 flexibility, but most modules need only a limited measure of this when
392 defining classes, functions, and methods. In this example, the only
393 definitions that will be considered are those which are defined in the
394 top level of their context, e.g., a function defined by a
\keyword{def
}
395 statement at column zero of a module, but not a function defined
396 within a branch of an
\code{if
} ...
\code{else
} construct, though
397 there are some good reasons for doing so in some situations. Nesting
398 of definitions will be handled by the code developed in the example.
400 To construct the upper-level extraction methods, we need to know what
401 the parse tree structure looks like and how much of it we actually
402 need to be concerned about. Python uses a moderately deep parse tree
403 so there are a large number of intermediate nodes. It is important to
404 read and understand the formal grammar used by Python. This is
405 specified in the file
\file{Grammar/Grammar
} in the distribution.
406 Consider the simplest case of interest when searching for docstrings:
407 a module consisting of a docstring and nothing else. (See file
408 \file{docstring.py
}.)
411 """Some documentation.
415 Using the interpreter to take a look at the parse tree, we find a
416 bewildering mass of numbers and parentheses, with the documentation
417 buried deep in nested tuples.
422 >>> ast = parser.suite(open('docstring.py').read())
423 >>> tup = parser.ast2tuple(ast)
424 >>> pprint.pprint(tup)
443 (
300, (
3, '"""Some documentation.
\012"""'))))))))))))))))),
449 The numbers at the first element of each node in the tree are the node
450 types; they map directly to terminal and non-terminal symbols in the
451 grammar. Unfortunately, they are represented as integers in the
452 internal representation, and the Python structures generated do not
453 change that. However, the
\module{symbol
} and
\module{token
} modules
454 provide symbolic names for the node types and dictionaries which map
455 from the integers to the symbolic names for the node types.
457 In the output presented above, the outermost tuple contains four
458 elements: the integer
\code{257} and three additional tuples. Node
459 type
\code{257} has the symbolic name
\constant{file_input
}. Each of
460 these inner tuples contains an integer as the first element; these
461 integers,
\code{264},
\code{4}, and
\code{0}, represent the node types
462 \constant{stmt
},
\constant{NEWLINE
}, and
\constant{ENDMARKER
},
464 Note that these values may change depending on the version of Python
465 you are using; consult
\file{symbol.py
} and
\file{token.py
} for
466 details of the mapping. It should be fairly clear that the outermost
467 node is related primarily to the input source rather than the contents
468 of the file, and may be disregarded for the moment. The
\constant{stmt
}
469 node is much more interesting. In particular, all docstrings are
470 found in subtrees which are formed exactly as this node is formed,
471 with the only difference being the string itself. The association
472 between the docstring in a similar tree and the defined entity (class,
473 function, or module) which it describes is given by the position of
474 the docstring subtree within the tree defining the described
477 By replacing the actual docstring with something to signify a variable
478 component of the tree, we allow a simple pattern matching approach to
479 check any given subtree for equivelence to the general pattern for
480 docstrings. Since the example demonstrates information extraction, we
481 can safely require that the tree be in tuple form rather than list
482 form, allowing a simple variable representation to be
483 \code{['variable_name'
]}. A simple recursive function can implement
484 the pattern matching, returning a boolean and a dictionary of variable
485 name to value mappings. (See file
\file{example.py
}.)
488 from types import ListType, TupleType
490 def match(pattern, data, vars=None):
493 if type(pattern) is ListType:
494 vars
[pattern
[0]] = data
496 if type(pattern) is not TupleType:
497 return (pattern == data), vars
498 if len(data) != len(pattern):
500 for pattern, data in map(None, pattern, data):
501 same, vars = match(pattern, data, vars)
507 Using this simple representation for syntactic variables and the symbolic
508 node types, the pattern for the candidate docstring subtrees becomes
509 fairly readable. (See file
\file{example.py
}.)
515 DOCSTRING_STMT_PATTERN = (
534 (token.STRING,
['docstring'
])
540 Using the
\function{match()
} function with this pattern, extracting the
541 module docstring from the parse tree created previously is easy:
544 >>> found, vars = match(DOCSTRING_STMT_PATTERN, tup
[1])
548 {'docstring': '"""Some documentation.
\012"""'
}
551 Once specific data can be extracted from a location where it is
552 expected, the question of where information can be expected
553 needs to be answered. When dealing with docstrings, the answer is
554 fairly simple: the docstring is the first
\constant{stmt
} node in a code
555 block (
\constant{file_input
} or
\constant{suite
} node types). A module
556 consists of a single
\constant{file_input
} node, and class and function
557 definitions each contain exactly one
\constant{suite
} node. Classes and
558 functions are readily identified as subtrees of code block nodes which
559 start with
\code{(stmt, (compound_stmt, (classdef, ...
} or
560 \code{(stmt, (compound_stmt, (funcdef, ...
}. Note that these subtrees
561 cannot be matched by
\function{match()
} since it does not support multiple
562 sibling nodes to match without regard to number. A more elaborate
563 matching function could be used to overcome this limitation, but this
564 is sufficient for the example.
566 Given the ability to determine whether a statement might be a
567 docstring and extract the actual string from the statement, some work
568 needs to be performed to walk the parse tree for an entire module and
569 extract information about the names defined in each context of the
570 module and associate any docstrings with the names. The code to
571 perform this work is not complicated, but bears some explanation.
573 The public interface to the classes is straightforward and should
574 probably be somewhat more flexible. Each ``major'' block of the
575 module is described by an object providing several methods for inquiry
576 and a constructor which accepts at least the subtree of the complete
577 parse tree which it represents. The
\class{ModuleInfo
} constructor
578 accepts an optional
\var{name
} parameter since it cannot
579 otherwise determine the name of the module.
581 The public classes include
\class{ClassInfo
},
\class{FunctionInfo
},
582 and
\class{ModuleInfo
}. All objects provide the
583 methods
\method{get_name()
},
\method{get_docstring()
},
584 \method{get_class_names()
}, and
\method{get_class_info()
}. The
585 \class{ClassInfo
} objects support
\method{get_method_names()
} and
586 \method{get_method_info()
} while the other classes provide
587 \method{get_function_names()
} and
\method{get_function_info()
}.
589 Within each of the forms of code block that the public classes
590 represent, most of the required information is in the same form and is
591 accessed in the same way, with classes having the distinction that
592 functions defined at the top level are referred to as ``methods.''
593 Since the difference in nomenclature reflects a real semantic
594 distinction from functions defined outside of a class, the
595 implementation needs to maintain the distinction.
596 Hence, most of the functionality of the public classes can be
597 implemented in a common base class,
\class{SuiteInfoBase
}, with the
598 accessors for function and method information provided elsewhere.
599 Note that there is only one class which represents function and method
600 information; this parallels the use of the
\keyword{def
} statement to
601 define both types of elements.
603 Most of the accessor functions are declared in
\class{SuiteInfoBase
}
604 and do not need to be overriden by subclasses. More importantly, the
605 extraction of most information from a parse tree is handled through a
606 method called by the
\class{SuiteInfoBase
} constructor. The example
607 code for most of the classes is clear when read alongside the formal
608 grammar, but the method which recursively creates new information
609 objects requires further examination. Here is the relevant part of
610 the
\class{SuiteInfoBase
} definition from
\file{example.py
}:
617 def __init__(self, tree = None):
618 self._class_info =
{}
619 self._function_info =
{}
621 self._extract_info(tree)
623 def _extract_info(self, tree):
626 found, vars = match(DOCSTRING_STMT_PATTERN
[1], tree
[1])
628 found, vars = match(DOCSTRING_STMT_PATTERN, tree
[3])
630 self._docstring = eval(vars
['docstring'
])
631 # discover inner definitions
632 for node in tree
[1:
]:
633 found, vars = match(COMPOUND_STMT_PATTERN, node)
635 cstmt = vars
['compound'
]
636 if cstmt
[0] == symbol.funcdef:
638 self._function_info
[name
] = FunctionInfo(cstmt)
639 elif cstmt
[0] == symbol.classdef:
641 self._class_info
[name
] = ClassInfo(cstmt)
644 After initializing some internal state, the constructor calls the
645 \method{_extract_info()
} method. This method performs the bulk of the
646 information extraction which takes place in the entire example. The
647 extraction has two distinct phases: the location of the docstring for
648 the parse tree passed in, and the discovery of additional definitions
649 within the code block represented by the parse tree.
651 The initial
\keyword{if
} test determines whether the nested suite is of
652 the ``short form'' or the ``long form.'' The short form is used when
653 the code block is on the same line as the definition of the code
657 def square(x): "Square an argument."; return x **
2
660 while the long form uses an indented block and allows nested
665 "Make a function that raises an argument to the exponent `exp'."
666 def raiser(x, y=exp):
671 When the short form is used, the code block may contain a docstring as
672 the first, and possibly only,
\constant{small_stmt
} element. The
673 extraction of such a docstring is slightly different and requires only
674 a portion of the complete pattern used in the more common case. As
675 implemented, the docstring will only be found if there is only
676 one
\constant{small_stmt
} node in the
\constant{simple_stmt
} node.
677 Since most functions and methods which use the short form do not
678 provide a docstring, this may be considered sufficient. The
679 extraction of the docstring proceeds using the
\function{match()
} function
680 as described above, and the value of the docstring is stored as an
681 attribute of the
\class{SuiteInfoBase
} object.
683 After docstring extraction, a simple definition discovery
684 algorithm operates on the
\constant{stmt
} nodes of the
685 \constant{suite
} node. The special case of the short form is not
686 tested; since there are no
\constant{stmt
} nodes in the short form,
687 the algorithm will silently skip the single
\constant{simple_stmt
}
688 node and correctly not discover any nested definitions.
690 Each statement in the code block is categorized as
691 a class definition, function or method definition, or
692 something else. For the definition statements, the name of the
693 element defined is extracted and a representation object
694 appropriate to the definition is created with the defining subtree
695 passed as an argument to the constructor. The repesentation objects
696 are stored in instance variables and may be retrieved by name using
697 the appropriate accessor methods.
699 The public classes provide any accessors required which are more
700 specific than those provided by the
\class{SuiteInfoBase
} class, but
701 the real extraction algorithm remains common to all forms of code
702 blocks. A high-level function can be used to extract the complete set
703 of information from a source file. (See file
\file{example.py
}.)
706 def get_docs(fileName):
707 source = open(fileName).read()
709 basename = os.path.basename(os.path.splitext(fileName)
[0])
711 ast = parser.suite(source)
712 tup = parser.ast2tuple(ast)
713 return ModuleInfo(tup, basename)
716 This provides an easy-to-use interface to the documentation of a
717 module. If information is required which is not extracted by the code
718 of this example, the code may be extended at clearly defined points to
719 provide additional capabilities.
723 \seemodule{symbol
}{useful constants representing internal nodes of the
726 \seemodule{token
}{useful constants representing leaf nodes of the
727 parse tree and functions for testing node values
}