diff options
author | Fred Drake <fdrake@acm.org> | 2002-12-03 22:57:37 +0000 |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2002-12-03 22:57:37 +0000 |
commit | a41b2bb981af277da5b4f42ecd48ff8f80c5a14f (patch) | |
tree | 4c0034b8485d240dbe78e16b126cd06bb87925ea | |
parent | 03cb7ee9c53215586ece957d254cfc2db45a44eb (diff) | |
download | cpython-git-a41b2bb981af277da5b4f42ecd48ff8f80c5a14f.tar.gz |
Fix problem in example code. It's minor in this particular example,
but can lead to mysterious problems in real applications.
-rw-r--r-- | Doc/lib/libpyexpat.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/libpyexpat.tex b/Doc/lib/libpyexpat.tex index abad8dd321..442bed1b48 100644 --- a/Doc/lib/libpyexpat.tex +++ b/Doc/lib/libpyexpat.tex @@ -480,7 +480,7 @@ p.CharacterDataHandler = char_data p.Parse("""<?xml version="1.0"?> <parent id="top"><child1 name="paul">Text goes here</child1> <child2 name="fred">More text</child2> -</parent>""") +</parent>""", 1) \end{verbatim} The output from this program is: |