Minor documentation change - hyperlink tidied up.
[python.git] / Demo / parser / README
bloba576d33b0478428e6de73e5e0302e88439093a63
1 These files are from the large example of using the `parser' module.  Refer
2 to the Python Library Reference for more information.
4 It also contains examples for the AST parser.
6 Files:
7 ------
9         FILES        -- list of files associated with the parser module.
11         README       -- this file.
13         example.py   -- module that uses the `parser' module to extract
14                         information from the parse tree of Python source
15                         code.
17         docstring.py -- sample source file containing only a module docstring.
19         simple.py    -- sample source containing a "short form" definition.
21         source.py    -- sample source code used to demonstrate ability to
22                         handle nested constructs easily using the functions
23                         and classes in example.py.
25         test_parser.py  program to put the parser module through its paces.
27         unparse.py      AST (2.5) based example to recreate source code
28                         from an AST. This is incomplete; contributions
29                         are welcome.
31 Enjoy!