diff options
author | Fred Drake <fdrake@acm.org> | 2000-11-22 17:59:32 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-11-22 17:59:32 (GMT) |
commit | fed0d0907530a2a6588ede5db8d241dc1eecc84c (patch) | |
tree | 225c94f658dfe6089643c3623da38d5da75a138b /Doc/tools | |
parent | 691a5a7c0967fb486a973b1ee0719a4d910f80f8 (diff) | |
download | cpython-fed0d0907530a2a6588ede5db8d241dc1eecc84c.zip cpython-fed0d0907530a2a6588ede5db8d241dc1eecc84c.tar.gz cpython-fed0d0907530a2a6588ede5db8d241dc1eecc84c.tar.bz2 |
Conversion.write_ordinal(): Not used, remove it.
Diffstat (limited to 'Doc/tools')
-rwxr-xr-x | Doc/tools/sgmlconv/latex2esis.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Doc/tools/sgmlconv/latex2esis.py b/Doc/tools/sgmlconv/latex2esis.py index 379878a..d4bfa3f 100755 --- a/Doc/tools/sgmlconv/latex2esis.py +++ b/Doc/tools/sgmlconv/latex2esis.py @@ -14,7 +14,6 @@ The format of the table is largely undocumented; see the commented 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 @@ class Conversion: 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") |