Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c74298a

Browse files
committed
Whitespace normalization.
1 parent 0a1af4a commit c74298a

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Lib/string.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ def safe_substitute(self, *args, **kws):
178178
mapping = _multimap(kws, args[0])
179179
else:
180180
mapping = args[0]
181-
delimiter = self.delimiter[-1]
181+
delimiter = self.delimiter[-1]
182182
# Helper function for .sub()
183183
def convert(mo):
184184
named = mo.group('named')

Lib/test/test_httplib.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ def _test():
118118
else:
119119
print "Expect InvalidURL"
120120

121-
for hp,h,p in (("[fe80::207:e9ff:fe9b]:8000", "fe80::207:e9ff:fe9b", 8000),
121+
for hp,h,p in (("[fe80::207:e9ff:fe9b]:8000", "fe80::207:e9ff:fe9b", 8000),
122122
("www.python.org:80", "www.python.org", 80),
123123
("www.python.org", "www.python.org", 80),
124124
("[fe80::207:e9ff:fe9b]", "fe80::207:e9ff:fe9b", 80)):

0 commit comments

Comments
 (0)