cpython/Demo/parser
Mark Dickinson ae1000533a Merged revisions 82338,82340-82341 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r82338 | mark.dickinson | 2010-06-28 20:31:41 +0100 (Mon, 28 Jun 2010) | 9 lines

  Fix some shallow bugs in Demo/parser/unparse.py, and add tests:

    - insert commas between entries in del statement
    - left and right shifts were represented as >> and << (respectively); reverse
    - unindent properly after for: else:  or while: else:
    - add parens around the result of an unary operation
    - add parens around negative numbers, to avoid turning (-1)**2 into -1**2.
........
  r82340 | mark.dickinson | 2010-06-28 20:34:15 +0100 (Mon, 28 Jun 2010) | 1 line

  Fix typo in test_unparse.py.
........
  r82341 | mark.dickinson | 2010-06-28 20:38:19 +0100 (Mon, 28 Jun 2010) | 1 line

  Set svn:eol-style on test_unparse.py.
........
2010-06-28 19:44:20 +00:00
..
docstring.py
example.py Run 2to3 over the Demo/ directory to shut up parse errors from 2to3 about lingering print statements. 2007-07-17 20:59:35 +00:00
FILES
README Start of a source code unparser. 2006-02-27 21:41:03 +00:00
simple.py
source.py nannified 1998-09-14 16:44:15 +00:00
test_parser.py convert shebang lines: python -> python3 2010-03-11 22:53:45 +00:00
test_unparse.py Merged revisions 82338,82340-82341 via svnmerge from 2010-06-28 19:44:20 +00:00
texipre.dat
unparse.py Merged revisions 82338,82340-82341 via svnmerge from 2010-06-28 19:44:20 +00:00

These files are from the large example of using the `parser' module.  Refer
to the Python Library Reference for more information.

It also contains examples for the AST parser.

Files:
------

	FILES	     -- list of files associated with the parser module.

	README	     -- this file.

	example.py   --	module that uses the `parser' module to extract
			information from the parse tree of Python source
			code.

	docstring.py -- sample source file containing only a module docstring.

	simple.py    -- sample source containing a "short form" definition.

	source.py    --	sample source code used to demonstrate ability to
			handle nested constructs easily using the functions
			and classes in example.py.

	test_parser.py  program to put the parser module through its paces.

	unparse.py	AST (2.5) based example to recreate source code
			from an AST. This is incomplete; contributions
			are welcome.

Enjoy!