summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>1999-08-26 17:50:26 (GMT)
committerFred Drake <fdrake@acm.org>1999-08-26 17:50:26 (GMT)
commit53eae8e81bfc72754f9be607203c558e0cedee90 (patch)
tree2fc9c1bbee2cae9ff3d3fa991eedd5d318955400 /Doc
parent762e206706b5fbf4d541006b8f2b0ca17cac6240 (diff)
downloadcpython-53eae8e81bfc72754f9be607203c558e0cedee90.zip
cpython-53eae8e81bfc72754f9be607203c558e0cedee90.tar.gz
cpython-53eae8e81bfc72754f9be607203c558e0cedee90.tar.bz2
convert(): Add support for ESIS '&' lines, and make sure we don't
silently ignore unrecognized lines.
Diffstat (limited to 'Doc')
-rwxr-xr-xDoc/tools/sgmlconv/esis2sgml.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/tools/sgmlconv/esis2sgml.py b/Doc/tools/sgmlconv/esis2sgml.py
index 38866ce..adb8873 100755
--- a/Doc/tools/sgmlconv/esis2sgml.py
+++ b/Doc/tools/sgmlconv/esis2sgml.py
@@ -146,6 +146,11 @@ def convert(ifp, ofp, xml=0, autoclose=(), verbatims=()):
attrs[name] = esistools.decode(value)
elif type == "e":
knownempty = 1
+ elif type == "&":
+ ofp.write("&%s;" % data)
+ knownempty = 0
+ else:
+ raise RuntimeError, "unrecognized ESIS event type: '%s'" % type
if LIST_EMPTIES:
dump_empty_element_names(knownempties)