Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | stringlib: remove unused STRINGLIB_RESIZE macro | Victor Stinner | 2013-04-14 |
| | |||
* | Issue #14738: Speed-up UTF-8 decoding on non-ASCII data. Patch by Serhiy ↵ | Antoine Pitrou | 2012-05-10 |
| | | | | Storchaka. | ||
* | Issue #13706: Fix format(int, "n") for locale with non-ASCII thousands separator | Victor Stinner | 2012-02-24 |
| | | | | | | | | | | | * Decode thousands separator and decimal point using PyUnicode_DecodeLocale() (from the locale encoding), instead of decoding them implicitly from latin1 * Remove _PyUnicode_InsertThousandsGroupingLocale(), it was not used * Change _PyUnicode_InsertThousandsGrouping() API to return the maximum character if unicode is NULL * Replace MIN/MAX macros by Py_MIN/Py_MAX * stringlib/undef.h undefines STRINGLIB_IS_UNICODE * stringlib/localeutil.h only supports Unicode | ||
* | remove some usage of Py_UNICODE_TOUPPER/LOWER | Benjamin Peterson | 2012-01-11 |
| | |||
* | stringlib: remove unused STRINGLIB_FILL | Victor Stinner | 2011-11-20 |
| | |||
* | Fix fastsearch for UCS2 and UCS4 | Victor Stinner | 2011-10-11 |
| | | | | | * If needle is 0, try (p[0] >> 16) & 0xff for UCS4 * Disable fastsearch_memchr_1char() if needle is zero for UCS2 and UCS4 | ||
* | Mark PyUnicode_FromUCS[124] as private | Victor Stinner | 2011-09-28 |
| | |||
* | Implement PEP 393. | Martin v. Löwis | 2011-09-28 |