From fed0d0907530a2a6588ede5db8d241dc1eecc84c Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Wed, 22 Nov 2000 17:59:32 +0000 Subject: [PATCH] Conversion.write_ordinal(): Not used, remove it. --- Doc/tools/sgmlconv/latex2esis.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Doc/tools/sgmlconv/latex2esis.py b/Doc/tools/sgmlconv/latex2esis.py index 379878a5b76..d4bfa3f8162 100755 --- a/Doc/tools/sgmlconv/latex2esis.py +++ b/Doc/tools/sgmlconv/latex2esis.py @@ -14,7 +14,6 @@ headers where the table is specified in main(). There is no provision to load an alternate table from an external file. """ -__version__ = '$Revision$' import errno import getopt @@ -114,9 +113,6 @@ def __init__(self, ifp, ofp, table): self.line = string.join(map(string.rstrip, ifp.readlines()), "\n") self.preamble = 1 - def write_ordinal(self, ordinal): - self.write("-\\%%%d;\n" % ordinal) - def err_write(self, msg): if DEBUG: sys.stderr.write(str(msg) + "\n")