diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-11-22 02:31:20 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-11-22 02:31:20 (GMT) |
commit | 63ab875cfefc0f1f4e123f4d9c885b3079446f35 (patch) | |
tree | 486029b035cc7f541bf9553cc388e6007726d4b7 /Python | |
parent | 0d3721d986e1cbb601e73cbb4d25552924d8ebf8 (diff) | |
download | cpython-63ab875cfefc0f1f4e123f4d9c885b3079446f35.zip cpython-63ab875cfefc0f1f4e123f4d9c885b3079446f35.tar.gz cpython-63ab875cfefc0f1f4e123f4d9c885b3079446f35.tar.bz2 |
Remove "#ifdef Py_UNICODE_WIDE": Python is now always wide
Diffstat (limited to 'Python')
-rw-r--r-- | Python/bltinmodule.c | 11 | ||||
-rw-r--r-- | Python/traceback.c | 10 |
2 files changed, 4 insertions, 17 deletions
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index 871eaa3..13349cc 100644 --- a/Python/bltinmodule.c +++ b/Python/bltinmodule.c @@ -518,17 +518,10 @@ builtin_chr(PyObject *self, PyObject *args) return PyUnicode_FromOrdinal(x); } -PyDoc_VAR(chr_doc) = PyDoc_STR( +PyDoc_STRVAR(chr_doc, "chr(i) -> Unicode character\n\ \n\ -Return a Unicode string of one character with ordinal i; 0 <= i <= 0x10ffff." -) -#ifndef Py_UNICODE_WIDE -PyDoc_STR( -"\nIf 0x10000 <= i, a surrogate pair is returned." -) -#endif -; +Return a Unicode string of one character with ordinal i; 0 <= i <= 0x10ffff."); static char * diff --git a/Python/traceback.c b/Python/traceback.c index 2f4653b..c8b3ee1 100644 --- a/Python/traceback.c +++ b/Python/traceback.c @@ -526,23 +526,17 @@ dump_ascii(int fd, PyObject *text) char c = (char)ch; write(fd, &c, 1); } - else if (ch < 256) { + else if (ch < 0xff) { PUTS(fd, "\\x"); dump_hexadecimal(2, ch, fd); } - else -#ifdef Py_UNICODE_WIDE - if (ch < 65536) -#endif - { + else if (ch < 0xffff) { PUTS(fd, "\\u"); dump_hexadecimal(4, ch, fd); -#ifdef Py_UNICODE_WIDE } else { PUTS(fd, "\\U"); dump_hexadecimal(8, ch, fd); -#endif } } if (truncated) |