diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2006-02-27 21:41:03 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2006-02-27 21:41:03 (GMT) |
commit | 5fec904f84a40005f824abe295525a1710056be0 (patch) | |
tree | 1b818998c15ab36b0fc0c17ae564099c1b6bc17e /Demo/parser/README | |
parent | 9aaad88393969c3b61609ad93331a743c1dafda7 (diff) | |
download | cpython-5fec904f84a40005f824abe295525a1710056be0.zip cpython-5fec904f84a40005f824abe295525a1710056be0.tar.gz cpython-5fec904f84a40005f824abe295525a1710056be0.tar.bz2 |
Start of a source code unparser.
Diffstat (limited to 'Demo/parser/README')
-rw-r--r-- | Demo/parser/README | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Demo/parser/README b/Demo/parser/README index e47d4e4..a576d33 100644 --- a/Demo/parser/README +++ b/Demo/parser/README @@ -1,6 +1,8 @@ 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: ------ @@ -22,4 +24,8 @@ Files: 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! |