Whitespace normalization.

This commit is contained in:
Tim Peters 2006-03-10 23:39:56 +00:00
parent 922dd7d49d
commit 88ca467ca4
3 changed files with 4 additions and 4 deletions

View File

@ -232,7 +232,7 @@ def setquit():
eof = 'Ctrl-Z plus Return'
else:
eof = 'Ctrl-D (i.e. EOF)'
class Quitter(object):
def __init__(self, name):
self.name = name

View File

@ -46,10 +46,10 @@ def test_main():
try:
c1,c2,c3,c4,c5 = [unistr(x) for x in line.split(';')[:-1]]
except RangeError:
# Skip unsupported characters;
# Skip unsupported characters;
# try atleast adding c1 if we are in part1
if part == "@Part1":
try:
try:
c1=unistr(line.split(';')[0])
except RangeError:
pass

View File

@ -666,7 +666,7 @@ def merge_old_version(version, new, old):
new.changed.append((version, zip(bidir_changes, category_changes,
decimal_changes, numeric_changes),
normalization_changes))
# --------------------------------------------------------------------
# the following support code is taken from the unidb utilities