Guido van Rossum | 16d27e3 | 1996-08-21 16:28:53 +0000 | [diff] [blame] | 1 | These files are from the large example of using the `parser' module. Refer |
| 2 | to the Python Library Reference for more information. |
| 3 | |
| 4 | Files: |
| 5 | ------ |
| 6 | |
Guido van Rossum | 8206fb9 | 1996-08-26 00:33:29 +0000 | [diff] [blame^] | 7 | FILES -- list of files associated with the parser module. |
| 8 | |
| 9 | README -- this file. |
| 10 | |
Guido van Rossum | 16d27e3 | 1996-08-21 16:28:53 +0000 | [diff] [blame] | 11 | example.py -- module that uses the `parser' module to extract |
| 12 | information from the parse tree of Python source |
| 13 | code. |
| 14 | |
Guido van Rossum | 8206fb9 | 1996-08-26 00:33:29 +0000 | [diff] [blame^] | 15 | docstring.py -- sample source file containing only a module docstring. |
| 16 | |
| 17 | simple.py -- sample source containing a "short form" definition. |
| 18 | |
Guido van Rossum | 16d27e3 | 1996-08-21 16:28:53 +0000 | [diff] [blame] | 19 | 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 Rossum | 8206fb9 | 1996-08-26 00:33:29 +0000 | [diff] [blame^] | 23 | pprint.py -- function to pretty-print Python values. |
| 24 | |
| 25 | test_parser.py program to put the parser module through it's paces. |
| 26 | |
| 27 | parser.tex -- LaTex driver file for formatting the parser module |
| 28 | documentation separately from the library reference. |
| 29 | |
| 30 | Makefile -- `make' rule set to format the parser module manual. |
| 31 | |
Guido van Rossum | 16d27e3 | 1996-08-21 16:28:53 +0000 | [diff] [blame] | 32 | Enjoy! |