Whitespace normalization.

This commit is contained in:
Tim Peters 2001-05-29 06:06:54 +00:00
parent 12f21ae07f
commit 3a2ab1ab69
3 changed files with 2 additions and 3 deletions

View file

@ -574,7 +574,7 @@ def make_encoding_map(decoding_map):
else:
m[v] = None
return m
### Tests
if __name__ == '__main__':

View file

@ -16,7 +16,7 @@
# ImportError then. But since tty *does* exist across platforms, that
# leaves a damaged module object for tty in sys.modules, and the import
# of tty here then appears to work despite that the tty imported is junk.
import termios
import termios
del termios
import tty

View file

@ -14,4 +14,3 @@
f = urllib2.urlopen(file_url)
buf = f.read()
f.close()