diff options
-rw-r--r-- | Lib/test/test_unicode.py | 2 | ||||
-rw-r--r-- | Objects/unicodeobject.c | 5 |
2 files changed, 5 insertions, 2 deletions
diff --git a/Lib/test/test_unicode.py b/Lib/test/test_unicode.py index 9e36316..7f70412 100644 --- a/Lib/test/test_unicode.py +++ b/Lib/test/test_unicode.py @@ -405,6 +405,8 @@ test('splitlines', u"\nabc\ndef\r\nghi\n\r", [u'\n', u'abc\n', u'def\r\n', u'ghi test('translate', u"abababc", u'bbbc', {ord('a'):None}) test('translate', u"abababc", u'iiic', {ord('a'):None, ord('b'):ord('i')}) test('translate', u"abababc", u'iiix', {ord('a'):None, ord('b'):ord('i'), ord('c'):u'x'}) +test('translate', u"abababc", u'<i><i><i>c', {ord('a'):None, ord('b'):u'<i>'}) +test('translate', u"abababc", u'c', {ord('a'):None, ord('b'):u''}) # Contains: print 'Testing Unicode contains method...', diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index 2108d94..dab3a75 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -5610,8 +5610,9 @@ PyDoc_STRVAR(translate__doc__, \n\ Return a copy of the string S, where all characters have been mapped\n\ through the given translation table, which must be a mapping of\n\ -Unicode ordinals to Unicode ordinals or None. Unmapped characters\n\ -are left untouched. Characters mapped to None are deleted."); +Unicode ordinals to Unicode ordinals, Unicode strings or None.\n\ +Unmapped characters are left untouched. Characters mapped to None\n\ +are deleted."); static PyObject* unicode_translate(PyUnicodeObject *self, PyObject *table) |