diff options
author | Tim Peters <tim.peters@gmail.com> | 2003-03-07 17:30:48 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2003-03-07 17:30:48 (GMT) |
commit | 669454e9dc4f8472b9239b4abdec1b7e111bb864 (patch) | |
tree | e5566ce903bf0f79dd1cd8292984a3b0a6d9ca6c /Lib/test | |
parent | bf7e241397165fdbe68c5119912bf64a52f0e3a0 (diff) | |
download | cpython-669454e9dc4f8472b9239b4abdec1b7e111bb864.zip cpython-669454e9dc4f8472b9239b4abdec1b7e111bb864.tar.gz cpython-669454e9dc4f8472b9239b4abdec1b7e111bb864.tar.bz2 |
Whitespace normalization.
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_plistlib.py | 4 | ||||
-rw-r--r-- | Lib/test/test_ucn.py | 2 | ||||
-rw-r--r-- | Lib/test/test_unicodedata.py | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/Lib/test/test_plistlib.py b/Lib/test/test_plistlib.py index bf070c7..75cd457 100644 --- a/Lib/test/test_plistlib.py +++ b/Lib/test/test_plistlib.py @@ -37,7 +37,7 @@ class TestPlistlib(unittest.TestCase): else: pl['aDate'] = plistlib.Date(time.mktime(time.gmtime())) return pl - + def test_create(self): pl = self._create() self.assertEqual(pl["aString"], "Doodah") @@ -47,7 +47,7 @@ class TestPlistlib(unittest.TestCase): pl = self._create() pl.write(test_support.TESTFN) pl2 = plistlib.Plist.fromFile(test_support.TESTFN) - self.assertEqual(dict(pl), dict(pl2)) + self.assertEqual(dict(pl), dict(pl2)) diff --git a/Lib/test/test_ucn.py b/Lib/test/test_ucn.py index a3cda10..d1fa35b 100644 --- a/Lib/test/test_ucn.py +++ b/Lib/test/test_ucn.py @@ -15,7 +15,7 @@ class UnicodeNamesTest(unittest.TestCase): def checkletter(self, name, code): # Helper that put all \N escapes inside eval'd raw strings, - # to make sure this script runs even if the compiler + # to make sure this script runs even if the compiler # chokes on \N escapes res = eval(ur'u"\N{%s}"' % name) self.assertEqual(res, code) diff --git a/Lib/test/test_unicodedata.py b/Lib/test/test_unicodedata.py index 95077c3..a3a5fbc 100644 --- a/Lib/test/test_unicodedata.py +++ b/Lib/test/test_unicodedata.py @@ -191,7 +191,7 @@ class UnicodeMiscTest(UnicodeDatabaseTest): def test_digit_numeric_consistent(self): # Test that digit and numeric are consistent, - # i.e. if a character has a digit value, + # i.e. if a character has a digit value, # it's numeric value should be the same. count = 0 for i in xrange(0x10000): |