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

Skip to content

Commit 0009c4e

Browse files
committed
Whitespace normalization.
1 parent edf2210 commit 0009c4e

4 files changed

Lines changed: 4 additions & 5 deletions

File tree

Lib/test/test_compile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
print "testing complex args"
2525

2626
def comp_args((a, b)):
27-
print a,b
27+
print a,b
2828

2929
comp_args((1, 2))
3030

Lib/test/test_minidom.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ def testLegalChildren():
9898
else:
9999
print "dom.appendChild didn't raise HierarchyRequestErr"
100100

101-
nodemap = elem.attributes
101+
nodemap = elem.attributes
102102
try: nodemap.setNamedItem(text)
103103
except HierarchyRequestErr: pass
104104
else:

Lib/test/test_support.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,4 +87,3 @@ def check_syntax(statement):
8787
pass
8888
else:
8989
print 'Missing SyntaxError: "%s"' % statement
90-

Lib/test/test_zlib.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
# Test for the odd flushing bugs noted in 2.0, and hopefully fixed in 2.1
9393

9494
import random
95-
random.seed(1)
95+
random.seed(1)
9696

9797
print 'Testing on 17K of random data'
9898

@@ -105,7 +105,7 @@
105105
a=""
106106
for i in range(17*1024):
107107
a=a+chr(random.randint(0,255))
108-
108+
109109
# compress, sync-flush, and decompress
110110
t = d.decompress( c.compress(a)+c.flush(zlib.Z_SYNC_FLUSH) )
111111

0 commit comments

Comments
 (0)