diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2012-12-14 18:14:17 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2012-12-14 18:14:17 (GMT) |
commit | 752f5dd0f747b6ead2f72c6cc8b12dc463570c64 (patch) | |
tree | 6fcfac61376e95815dcba2e9afe8db35a5862ee9 | |
parent | 22f36eed4d3c01ba101ab77c4df84fae126fc1ac (diff) | |
parent | 11def426c0d7b6f81e324b295ba731386adb862a (diff) | |
download | cpython-752f5dd0f747b6ead2f72c6cc8b12dc463570c64.zip cpython-752f5dd0f747b6ead2f72c6cc8b12dc463570c64.tar.gz cpython-752f5dd0f747b6ead2f72c6cc8b12dc463570c64.tar.bz2 |
#16681: merge with 3.3.
-rw-r--r-- | Doc/library/unicodedata.rst | 2 | ||||
-rw-r--r-- | Modules/unicodedata.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/unicodedata.rst b/Doc/library/unicodedata.rst index d05142a..52acc18 100644 --- a/Doc/library/unicodedata.rst +++ b/Doc/library/unicodedata.rst @@ -69,7 +69,7 @@ following functions: .. function:: bidirectional(chr) - Returns the bidirectional category assigned to the character *chr* as + Returns the bidirectional class assigned to the character *chr* as string. If no such value is defined, an empty string is returned. diff --git a/Modules/unicodedata.c b/Modules/unicodedata.c index d339f58..27fadb7 100644 --- a/Modules/unicodedata.c +++ b/Modules/unicodedata.c @@ -273,7 +273,7 @@ unicodedata_category(PyObject *self, PyObject *args) PyDoc_STRVAR(unicodedata_bidirectional__doc__, "bidirectional(unichr)\n\ \n\ -Returns the bidirectional category assigned to the Unicode character\n\ +Returns the bidirectional class assigned to the Unicode character\n\ unichr as string. If no such value is defined, an empty string is\n\ returned."); |