summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>1999-02-19 22:56:08 (GMT)
committerFred Drake <fdrake@acm.org>1999-02-19 22:56:08 (GMT)
commit9f03380d1cb5829305750cfcc2ec1cdea18e3311 (patch)
treea160b061c546d9ab229bb7dde10e95ff9a6f34dc
parentc60047575d23c520c54d168ae3b63e3e4b787ae3 (diff)
downloadcpython-9f03380d1cb5829305750cfcc2ec1cdea18e3311.zip
cpython-9f03380d1cb5829305750cfcc2ec1cdea18e3311.tar.gz
cpython-9f03380d1cb5829305750cfcc2ec1cdea18e3311.tar.bz2
Use more current approach to recording authors.
-rw-r--r--Doc/lib/libparser.tex9
1 files changed, 3 insertions, 6 deletions
diff --git a/Doc/lib/libparser.tex b/Doc/lib/libparser.tex
index 80ad493..49a92e5 100644
--- a/Doc/lib/libparser.tex
+++ b/Doc/lib/libparser.tex
@@ -10,12 +10,13 @@
%
\section{\module{parser} ---
- Access parse trees of Python code.}
+ Access parse trees for Python code}
+
\declaremodule{builtin}{parser}
+\modulesynopsis{Access parse trees for Python source code.}
\moduleauthor{Fred L. Drake, Jr.}{fdrake@acm.org}
\sectionauthor{Fred L. Drake, Jr.}{fdrake@acm.org}
-\modulesynopsis{Access parse trees of Python source code.}
\index{parsing!Python source code}
@@ -27,10 +28,6 @@ to parse and modify an arbitrary Python code fragment as a string
because parsing is performed in a manner identical to the code
forming the application. It is also faster.
-The \module{parser} module was written and documented by Fred
-L. Drake, Jr. (\email{fdrake@acm.org}).%
-\index{Drake, Fred L., Jr.}
-
There are a few things to note about this module which are important
to making use of the data structures created. This is not a tutorial
on editing the parse trees for Python code, but some examples of using