Commit fed0d090 authored by Fred Drake's avatar Fred Drake

Conversion.write_ordinal(): Not used, remove it.

parent 691a5a7c
...@@ -14,7 +14,6 @@ The format of the table is largely undocumented; see the commented ...@@ -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 headers where the table is specified in main(). There is no provision
to load an alternate table from an external file. to load an alternate table from an external file.
""" """
__version__ = '$Revision$'
import errno import errno
import getopt import getopt
...@@ -114,9 +113,6 @@ class Conversion: ...@@ -114,9 +113,6 @@ class Conversion:
self.line = string.join(map(string.rstrip, ifp.readlines()), "\n") self.line = string.join(map(string.rstrip, ifp.readlines()), "\n")
self.preamble = 1 self.preamble = 1
def write_ordinal(self, ordinal):
self.write("-\\%%%d;\n" % ordinal)
def err_write(self, msg): def err_write(self, msg):
if DEBUG: if DEBUG:
sys.stderr.write(str(msg) + "\n") sys.stderr.write(str(msg) + "\n")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment