diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2014-01-03 13:16:00 +0100 |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2014-01-03 13:16:00 +0100 |
commit | f3b46b4a66560945d4c80ac2f10764e3d7f71f8d (patch) | |
tree | 4baaa4ff9edc276655be7289b2c30f7e47a5feab /Objects/unicodeobject.c | |
parent | 985a82a6d296a587843e35de643576b957816bdb (diff) | |
download | cpython-git-f3b46b4a66560945d4c80ac2f10764e3d7f71f8d.tar.gz |
unicode_char() uses get_latin1_char() to get latin1 singleton characters
Diffstat (limited to 'Objects/unicodeobject.c')
-rw-r--r-- | Objects/unicodeobject.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index 1fb5742317..b2279a652d 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -1772,6 +1772,9 @@ unicode_char(Py_UCS4 ch) assert(ch <= MAX_UNICODE); + if (ch < 256) + return get_latin1_char(ch); + unicode = PyUnicode_New(1, ch); if (unicode == NULL) return NULL; |