From f3961630cda5a1bdbb68f71f5b93fd6b4450ece8 Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Tue, 3 Dec 2002 22:58:04 +0000 Subject: [PATCH] Fix problem in example code. It's minor in this particular example, but can lead to mysterious problems in real applications. --- Doc/lib/libpyexpat.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/lib/libpyexpat.tex b/Doc/lib/libpyexpat.tex index 356e4b74673c..9153c92cc7d4 100644 --- a/Doc/lib/libpyexpat.tex +++ b/Doc/lib/libpyexpat.tex @@ -451,7 +451,7 @@ p.CharacterDataHandler = char_data p.Parse(""" Text goes here More text -""") +""", 1) \end{verbatim} The output from this program is: -- 2.47.3