diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-01-18 02:22:22 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-01-18 02:22:22 (GMT) |
commit | d2bf3b7ca6f702f54b8e81ea8d194fc116ac6791 (patch) | |
tree | c34fdd1272160f21e142ecf814d1dd68ff5cfa98 /Lib/test/test_charmapcodec.py | |
parent | be4cbb16681ba9274b3017d9ccf3bcb2a2dbc30c (diff) | |
download | cpython-d2bf3b7ca6f702f54b8e81ea8d194fc116ac6791.zip cpython-d2bf3b7ca6f702f54b8e81ea8d194fc116ac6791.tar.gz cpython-d2bf3b7ca6f702f54b8e81ea8d194fc116ac6791.tar.bz2 |
Whitespace normalization. Leaving tokenize_tests.py alone for now.
Diffstat (limited to 'Lib/test/test_charmapcodec.py')
-rw-r--r-- | Lib/test/test_charmapcodec.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/test/test_charmapcodec.py b/Lib/test/test_charmapcodec.py index ca7b331..fb19c37 100644 --- a/Lib/test/test_charmapcodec.py +++ b/Lib/test/test_charmapcodec.py @@ -17,7 +17,7 @@ def check(a, b): # test codec's full path name (see test/testcodec.py) codecname = 'test.testcodec' - + check(unicode('abc', codecname), u'abc') check(unicode('xdef', codecname), u'abcdef') check(unicode('defx', codecname), u'defabc') @@ -41,4 +41,3 @@ except UnicodeError: print '\\001 maps to undefined: OK' else: print '*** check failed: \\001 does not map to undefined' - |