]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Whitespace normalization.
authorTim Peters <tim.peters@gmail.com>
Tue, 29 May 2001 06:06:54 +0000 (06:06 +0000)
committerTim Peters <tim.peters@gmail.com>
Tue, 29 May 2001 06:06:54 +0000 (06:06 +0000)
Lib/codecs.py
Lib/pty.py
Lib/test/test_urllib2.py

index bdc8d029da43f8622e3767297e542ccf601ed919..b3c2f71efd6aa5faad522ae16ac8e7291e44863c 100644 (file)
@@ -574,7 +574,7 @@ def make_encoding_map(decoding_map):
         else:
             m[v] = None
     return m
-    
+
 ### Tests
 
 if __name__ == '__main__':
index c9b8f0a397e7202ce69a169843340c4d155ad4d4..a2f21c9bf6ef44e301ef277b20e768d955ffdcd4 100644 (file)
@@ -16,7 +16,7 @@ import os
 # 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
index d2af276e3424bdd2aee8aa5559144bf3f472ca28..263c0d19176ce3818287b9dd050275890b32f0ae 100644 (file)
@@ -14,4 +14,3 @@ file_url = "file://%s" % urllib2.__file__
 f = urllib2.urlopen(file_url)
 buf = f.read()
 f.close()
-