diff options
author | Hye-Shik Chang <hyeshik@gmail.com> | 2004-06-04 03:19:17 (GMT) |
---|---|---|
committer | Hye-Shik Chang <hyeshik@gmail.com> | 2004-06-04 03:19:17 (GMT) |
commit | 7bd860655f8343fe02439a457bc59f7cd7d9eda8 (patch) | |
tree | 20b4650cf559b86c46cdfe446f407565ff038e58 /Lib | |
parent | 5f5125997beba34f79faa0751c6fa1fa74d97ae2 (diff) | |
download | cpython-7bd860655f8343fe02439a457bc59f7cd7d9eda8.zip cpython-7bd860655f8343fe02439a457bc59f7cd7d9eda8.tar.gz cpython-7bd860655f8343fe02439a457bc59f7cd7d9eda8.tar.bz2 |
Fix typo.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_unicode.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_unicode.py b/Lib/test/test_unicode.py index e01a461..4b16f90 100644 --- a/Lib/test/test_unicode.py +++ b/Lib/test/test_unicode.py @@ -302,7 +302,7 @@ class UnicodeTest( self.checkequalnofix(True, u'\ud55c\uae00', 'iswide') self.checkequalnofix(False, u'\ud55c\u2606\uae00', 'iswide') - def test_wide(self): + def test_width(self): self.assertEqual(u''.width(), 0) self.assertEqual(u'abcd'.width(), 4) self.assertEqual(u'\u0187\u01c9'.width(), 2) |