blob: ec45ca9819832d2f21e9f4aa2f559d5e4a17cc7b [file] [log] [blame]
Guido van Rossum16d27e31996-08-21 16:28:53 +00001These files are from the large example of using the `parser' module. Refer
2to the Python Library Reference for more information.
3
4Files:
5------
6
Guido van Rossum8206fb91996-08-26 00:33:29 +00007 FILES -- list of files associated with the parser module.
8
9 README -- this file.
10
Guido van Rossum16d27e31996-08-21 16:28:53 +000011 example.py -- module that uses the `parser' module to extract
12 information from the parse tree of Python source
13 code.
14
Guido van Rossum8206fb91996-08-26 00:33:29 +000015 docstring.py -- sample source file containing only a module docstring.
16
17 simple.py -- sample source containing a "short form" definition.
18
Guido van Rossum16d27e31996-08-21 16:28:53 +000019 source.py -- sample source code used to demonstrate ability to
20 handle nested constructs easily using the functions
21 and classes in example.py.
22
Guido van Rossum8206fb91996-08-26 00:33:29 +000023 test_parser.py program to put the parser module through it's paces.
24
25 parser.tex -- LaTex driver file for formatting the parser module
26 documentation separately from the library reference.
27
28 Makefile -- `make' rule set to format the parser module manual.
29
Guido van Rossum16d27e31996-08-21 16:28:53 +000030Enjoy!