| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Issue #27171: Fix typos in documentation, comments, and test function names | Martin Panter | 2016-06-02 | 1 | -1/+1 |
| | | |||||
| * | Correct “an” → “a” with “Unicode”, “user”, “UTF”, etc | Martin Panter | 2016-04-15 | 1 | -1/+1 |
| | | | | | This affects documentation, code comments, and a debugging messages. | ||||
| * | Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF | Serhiy Storchaka | 2016-04-10 | 1 | -4/+4 |
| | | | | | in places where Py_DECREF was used. | ||||
| * | Issue #22570: Renamed Py_SETREF to Py_XSETREF. | Serhiy Storchaka | 2016-04-06 | 1 | -4/+4 |
| | | |||||
| * | Issue #26494: Fixed crash on iterating exhausting iterators. | Serhiy Storchaka | 2016-03-30 | 1 | -1/+1 |
| | | | | | | | Affected classes are generic sequence iterators, iterators of str, bytes, bytearray, list, tuple, set, frozenset, dict, OrderedDict, corresponding views and os.scandir() iterator. | ||||
| * | Issue #26464: Fix unicode_fast_translate() again | Victor Stinner | 2016-03-01 | 1 | -9/+12 |
| | | | | | Initialize i variable if the string is non-ASCII. | ||||
| * | Fix str.translate() | Victor Stinner | 2016-03-01 | 1 | -3/+4 |
| | | | | | | | Issue #26464: Fix str.translate() when string is ASCII and first replacements removes character, but next replacement uses a non-ASCII character or a string longer than 1 character. Regression introduced in Python 3.5.0. | ||||
| * | Fix resize_compact() | Victor Stinner | 2016-01-27 | 1 | -0/+2 |
| | | | | | | Issue #26217: resize_compact() must set wstr_length to 0 after freeing the wstr string. Otherwise, an assertion fails in _PyUnicode_CheckConsistency(). | ||||
| * | Issue #20440: More use of Py_SETREF. | Serhiy Storchaka | 2015-12-27 | 1 | -1/+1 |
| | | | | | | This patch is manually crafted and contains changes that couldn't be handled automatically. | ||||
| * | Issue #20440: Massive replacing unsafe attribute setting code with special | Serhiy Storchaka | 2015-12-24 | 1 | -8/+4 |
| | | | | | macro Py_SETREF. | ||||
| * | Issue #25709: Fixed problem with in-place string concatenation and utf-8 cache. | Serhiy Storchaka | 2015-12-03 | 1 | -0/+5 |
| |\ | |||||
| | * | Issue #25709: Fixed problem with in-place string concatenation and utf-8 cache. | Serhiy Storchaka | 2015-12-03 | 1 | -0/+5 |
| | | | |||||
| * | | make the PyUnicode_FSConverter cleanup set the decrefed argument to NULL ↵ | Benjamin Peterson | 2015-11-15 | 1 | -0/+1 |
| | | | | | | | | | (closes #25630) | ||||
| * | | Issue #25523: Merge a-to-an corrections from 3.4. | Serhiy Storchaka | 2015-11-02 | 1 | -2/+2 |
| |\ \ | |/ | |||||
| | * | Issue #25523: Further a-to-an corrections. | Serhiy Storchaka | 2015-11-02 | 1 | -2/+2 |
| | | | |||||
| * | | Issue #24848: Fixed bugs in UTF-7 decoding of misformed data: | Serhiy Storchaka | 2015-10-02 | 1 | -9/+12 |
| |\ \ | |/ | | | | | | | | | | | 1. Non-ASCII bytes were accepted after shift sequence. 2. A low surrogate could be emitted in case of error in high surrogate. 3. In some circumstances the '\xfd' character was produced instead of the replacement character '\ufffd' (due to a bug in _PyUnicodeWriter). | ||||
| | * | Issue #24848: Fixed bugs in UTF-7 decoding of misformed data: | Serhiy Storchaka | 2015-10-02 | 1 | -9/+12 |
| | | | | | | | | | | | 1. Non-ASCII bytes were accepted after shift sequence. 2. A low surrogate could be emitted in case of error in high surrogate. | ||||
| * | | Issue #21279: Merge with 3.4 | Zachary Ware | 2015-08-06 | 1 | -5/+6 |
| |\ \ | |/ | |||||
| | * | Issue #21279: Flesh out str.translate docs | Zachary Ware | 2015-08-05 | 1 | -5/+6 |
| | | | | | | | | | Initial patch by Kinga Farkas, Martin Panter, and John Posner. | ||||
| * | | Issue #24284: The startswith and endswith methods of the str class no longer | Serhiy Storchaka | 2015-05-31 | 1 | -3/+3 |
| | | | | | | | | | | | return True when finding the empty string and the indexes are completely out of range. | ||||
| * | | Fix some compilation warnings when using gcc (-Wmaybe-uninitialized). | Antoine Pitrou | 2015-05-19 | 1 | -3/+3 |
| |\ \ | |/ | |||||
| | * | Fix some compilation warnings when using gcc (-Wmaybe-uninitialized). | Antoine Pitrou | 2015-05-19 | 1 | -17/+17 |
| | | | |||||
| * | | Issue #15027: The UTF-32 encoder is now 3x to 7x faster. | Serhiy Storchaka | 2015-05-12 | 1 | -61/+41 |
| | | | |||||
| * | | Issue #23908: os functions now reject paths with embedded null character | Serhiy Storchaka | 2015-04-20 | 1 | -15/+0 |
| |\ \ | |/ | | | | | | | | | on Windows instead of silently truncate them. Removed no longer used _PyUnicode_HasNULChars(). | ||||
| | * | Issue #23803: Fixed str.partition() and str.rpartition() when a separator | Serhiy Storchaka | 2015-03-29 | 1 | -5/+5 |
| | | | | | | | | | is wider then partitioned string. | ||||
| | * | merge 3.3 (#23362) | Benjamin Peterson | 2015-03-02 | 1 | -1/+1 |
| | |\ | |||||
| | | * | use PyMem_NEW to detect overflow (closes #23362) | Benjamin Peterson | 2015-03-02 | 1 | -1/+1 |
| | | | | |||||
| | | * | Issue #23055: Fixed a buffer overflow in PyUnicode_FromFormatV. Analysis | Serhiy Storchaka | 2015-01-27 | 1 | -0/+2 |
| | | | | | | | | | | | | | and fix by Guido Vranken. | ||||
| * | | | Issue #23501: Argumen Clinic now generates code into separate files by default. | Serhiy Storchaka | 2015-04-03 | 1 | -39/+3 |
| | | | | |||||
| * | | | _PyUnicodeWriter_WriteStr() now checks that the input string is consistent | Victor Stinner | 2015-03-26 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | | | | | | | | in debug mode to detect bugs earlier. _PyUnicodeWriter_Finish() doesn't check if the read only string is consistent, whereas it does check consistency for strings built by itself. | ||||
| * | | | Issue #23573: Increased performance of string search operations (str.find, | Serhiy Storchaka | 2015-03-24 | 1 | -152/+192 |
| | | | | | | | | | | | | | | | | str.index, str.count, the in operator, str.split, str.partition) with arguments of different kinds (UCS1, UCS2, UCS4). | ||||
| * | | | Fix compiler warnings: comparison between signed and unsigned numbers | Victor Stinner | 2015-03-20 | 1 | -1/+1 |
| | | | | |||||
| * | | | Initialize variables to prevent GCC warnings | Victor Stinner | 2015-03-18 | 1 | -15/+20 |
| | | | | |||||
| * | | | Issue #23451: Update pyconfig.h for Windows to require Vista headers and ↵ | Steve Dower | 2015-03-02 | 1 | -18/+1 |
| | | | | | | | | | | | | | remove unnecessary version checks. | ||||
| * | | | Issue #23490: Fixed possible crashes related to interoperability between | Serhiy Storchaka | 2015-02-20 | 1 | -0/+9 |
| |\ \ \ | |/ / | | | | | | | old-style and new API for string with 2**30-1 characters. | ||||
| | * | | Issue #23490: Fixed possible crashes related to interoperability between | Serhiy Storchaka | 2015-02-20 | 1 | -0/+9 |
| | | | | | | | | | | | | | old-style and new API for string with 2**30-1 characters. | ||||
| * | | | Issue #23446: Use PyMem_New instead of PyMem_Malloc to avoid possible integer | Serhiy Storchaka | 2015-02-16 | 1 | -17/+5 |
| |\ \ \ | |/ / | | | | | | | overflows. Added few missed PyErr_NoMemory(). | ||||
| | * | | Issue #23446: Use PyMem_New instead of PyMem_Malloc to avoid possible integer | Serhiy Storchaka | 2015-02-16 | 1 | -17/+5 |
| | | | | | | | | | | | | | overflows. Added few missed PyErr_NoMemory(). | ||||
| * | | | Issue #15859: PyUnicode_EncodeFSDefault(), PyUnicode_EncodeMBCS() and | Victor Stinner | 2015-01-26 | 1 | -4/+5 |
| | | | | | | | | | | | | | | | | | | | PyUnicode_EncodeCodePage() now raise an exception if the object is not an Unicode object. For PyUnicode_EncodeFSDefault(), it was already the case on platforms other than Windows. Patch written by Campbell Barton. | ||||
| * | | | Issue #23321: Fixed a crash in str.decode() when error handler returned | Serhiy Storchaka | 2015-01-26 | 1 | -2/+6 |
| |\ \ \ | |/ / | | | | | | | replacment string longer than mailformed input data. | ||||
| | * | | Issue #23321: Fixed a crash in str.decode() when error handler returned | Serhiy Storchaka | 2015-01-26 | 1 | -2/+6 |
| | | | | | | | | | | | | | replacment string longer than mailformed input data. | ||||
| * | | | Issue20284: Implement PEP461 | Ethan Furman | 2015-01-23 | 1 | -7/+5 |
| | | | | |||||
| * | | | Issue #23181: More "codepoint" -> "code point". | Serhiy Storchaka | 2015-01-18 | 1 | -2/+2 |
| |\ \ \ | |/ / | |||||
| | * | | Issue #23181: More "codepoint" -> "code point". | Serhiy Storchaka | 2015-01-18 | 1 | -2/+2 |
| | | | | |||||
| * | | | Issue #22581: Use more "bytes-like object" throughout the docs and comments. | Serhiy Storchaka | 2014-12-05 | 1 | -2/+1 |
| |\ \ \ | |/ / | |||||
| | * | | Issue #22581: Use more "bytes-like object" throughout the docs and comments. | Serhiy Storchaka | 2014-12-05 | 1 | -2/+1 |
| | | | | |||||
| * | | | Issue #22975: Close block at right place. | Serhiy Storchaka | 2014-12-01 | 1 | -1/+1 |
| |\ \ \ | |/ / | |||||
| | * | | Issue #22975: Close block at right place. | Serhiy Storchaka | 2014-12-01 | 1 | -1/+1 |
| | | | | |||||
| | * | | Merge 3.3 | Benjamin Peterson | 2014-10-15 | 1 | -1/+1 |
| | |\ \ | | |/ | |||||
| | | * | Fixed signed/unsigned comparison warning | Antoine Pitrou | 2014-10-15 | 1 | -1/+1 |
| | | | | |||||
