Kaydet (Commit) d2bf3b7c authored tarafından Tim Peters's avatar Tim Peters

Whitespace normalization. Leaving tokenize_tests.py alone for now.

üst be4cbb16
...@@ -41,4 +41,3 @@ except UnicodeError: ...@@ -41,4 +41,3 @@ except UnicodeError:
print '\\001 maps to undefined: OK' print '\\001 maps to undefined: OK'
else: else:
print '*** check failed: \\001 does not map to undefined' print '*** check failed: \\001 does not map to undefined'
...@@ -198,4 +198,3 @@ test_exc('abc %a', 1, ValueError, ...@@ -198,4 +198,3 @@ test_exc('abc %a', 1, ValueError,
"unsupported format character 'a' (0x61) at index 5") "unsupported format character 'a' (0x61) at index 5")
test_exc(u'abc %\u3000', 1, ValueError, test_exc(u'abc %\u3000', 1, ValueError,
"unsupported format character '?' (0x3000) at index 5") "unsupported format character '?' (0x3000) at index 5")
...@@ -46,4 +46,3 @@ decoding_map.update({ ...@@ -46,4 +46,3 @@ decoding_map.update({
encoding_map = {} encoding_map = {}
for k,v in decoding_map.items(): for k,v in decoding_map.items():
encoding_map[v] = k encoding_map[v] = k
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment