diff options
author | Guido van Rossum <guido@python.org> | 1996-08-21 16:28:53 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-08-21 16:28:53 (GMT) |
commit | 16d27e3b141d26853effc6c70214412cebebbe9f (patch) | |
tree | c98f065362f2a1dfd552eff86934cb638dfaf055 /Demo/parser/README | |
parent | 6dbd190f5ec3127ad7c5ef6fc67d2f02c4cc1492 (diff) | |
download | cpython-16d27e3b141d26853effc6c70214412cebebbe9f.zip cpython-16d27e3b141d26853effc6c70214412cebebbe9f.tar.gz cpython-16d27e3b141d26853effc6c70214412cebebbe9f.tar.bz2 |
Demos for Fred's parser module
Diffstat (limited to 'Demo/parser/README')
-rw-r--r-- | Demo/parser/README | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Demo/parser/README b/Demo/parser/README new file mode 100644 index 0000000..03696c3 --- /dev/null +++ b/Demo/parser/README @@ -0,0 +1,15 @@ +These files are from the large example of using the `parser' module. Refer +to the Python Library Reference for more information. + +Files: +------ + + example.py -- module that uses the `parser' module to extract + information from the parse tree of Python source + code. + + source.py -- sample source code used to demonstrate ability to + handle nested constructs easily using the functions + and classes in example.py. + +Enjoy! |