]> granicus.if.org Git - python/commitdiff
Whitespace normalization.
authorTim Peters <tim.peters@gmail.com>
Thu, 16 Sep 2004 00:09:19 +0000 (00:09 +0000)
committerTim Peters <tim.peters@gmail.com>
Thu, 16 Sep 2004 00:09:19 +0000 (00:09 +0000)
Lib/string.py
Lib/test/test_httplib.py

index f8b4490de0737e9939242243ac498047120881b5..3c37b0ba73e10fd9a9def232e462498e8132ae1a 100644 (file)
@@ -178,7 +178,7 @@ class Template:
             mapping = _multimap(kws, args[0])
         else:
             mapping = args[0]
-        delimiter = self.delimiter[-1]            
+        delimiter = self.delimiter[-1]
         # Helper function for .sub()
         def convert(mo):
             named = mo.group('named')
index deca23ac6110a7435d065509a28010aae65e7508..ede0f4b82f99289141d5fcc7e75a6e2db623204d 100644 (file)
@@ -118,7 +118,7 @@ def _test():
         else:
             print "Expect InvalidURL"
 
-    for hp,h,p in (("[fe80::207:e9ff:fe9b]:8000", "fe80::207:e9ff:fe9b", 8000), 
+    for hp,h,p in (("[fe80::207:e9ff:fe9b]:8000", "fe80::207:e9ff:fe9b", 8000),
                    ("www.python.org:80", "www.python.org", 80),
                    ("www.python.org", "www.python.org", 80),
                    ("[fe80::207:e9ff:fe9b]", "fe80::207:e9ff:fe9b", 80)):