diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2011-09-28 21:18:19 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2011-09-28 21:18:19 (GMT) |
commit | 48a2f8fd972205688a1011348100bdb482c81836 (patch) | |
tree | 09f86d9cdf88c75688bc836c78e54ea88d365371 /Python | |
parent | 506f5927691e0088adc7ac6e6d7b43ad78f1576b (diff) | |
download | cpython-48a2f8fd972205688a1011348100bdb482c81836.zip cpython-48a2f8fd972205688a1011348100bdb482c81836.tar.gz cpython-48a2f8fd972205688a1011348100bdb482c81836.tar.bz2 |
#13054: sys.maxunicode is now always 0x10FFFF.
Diffstat (limited to 'Python')
-rw-r--r-- | Python/sysmodule.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/sysmodule.c b/Python/sysmodule.c index b549203..dea2149 100644 --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -1261,7 +1261,7 @@ float_repr_style -- string indicating the style of repr() output for floats\n\ hexversion -- version information encoded as a single integer\n\ int_info -- a struct sequence with information about the int implementation.\n\ maxsize -- the largest supported length of containers.\n\ -maxunicode -- the largest supported character\n\ +maxunicode -- the value of the largest Unicode codepoint\n\ platform -- platform identifier\n\ prefix -- prefix used to find the Python library\n\ thread_info -- a struct sequence with information about the thread implementation.\n\ @@ -1536,7 +1536,7 @@ _PySys_Init(void) SET_SYS_FROM_STRING("hash_info", get_hash_info()); SET_SYS_FROM_STRING("maxunicode", - PyLong_FromLong(PyUnicode_GetMax())); + PyLong_FromLong(0x10FFFF)); SET_SYS_FROM_STRING("builtin_module_names", list_builtin_module_names()); { |