summaryrefslogtreecommitdiffstats
path: root/Objects/unicodeobject.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREFSerhiy Storchaka2016-04-101-4/+4
* Issue #22570: Renamed Py_SETREF to Py_XSETREF.Serhiy Storchaka2016-04-061-4/+4
* Issue #26494: Fixed crash on iterating exhausting iterators.Serhiy Storchaka2016-03-301-1/+1
* Issue #26464: Fix unicode_fast_translate() againVictor Stinner2016-03-011-9/+12
* Fix str.translate()Victor Stinner2016-03-011-3/+4
* Fix resize_compact()Victor Stinner2016-01-271-0/+2
* Issue #20440: More use of Py_SETREF.Serhiy Storchaka2015-12-271-1/+1
* Issue #20440: Massive replacing unsafe attribute setting code with specialSerhiy Storchaka2015-12-241-8/+4
* Issue #25709: Fixed problem with in-place string concatenation and utf-8 cache.Serhiy Storchaka2015-12-021-0/+5
|\
| * Issue #25709: Fixed problem with in-place string concatenation and utf-8 cache.Serhiy Storchaka2015-12-021-0/+5
* | make the PyUnicode_FSConverter cleanup set the decrefed argument to NULL (clo...Benjamin Peterson2015-11-161-0/+1
* | Issue #25523: Merge a-to-an corrections from 3.4.Serhiy Storchaka2015-11-021-2/+2
|\ \ | |/
| * Issue #25523: Further a-to-an corrections.Serhiy Storchaka2015-11-021-2/+2
* | Issue #24848: Fixed bugs in UTF-7 decoding of misformed data:Serhiy Storchaka2015-10-021-9/+12
|\ \ | |/
| * Issue #24848: Fixed bugs in UTF-7 decoding of misformed data:Serhiy Storchaka2015-10-021-9/+12
* | Issue #21279: Merge with 3.4Zachary Ware2015-08-061-5/+6
|\ \ | |/
| * Issue #21279: Flesh out str.translate docsZachary Ware2015-08-061-5/+6
* | Issue #24284: The startswith and endswith methods of the str class no longerSerhiy Storchaka2015-05-311-3/+3
* | Fix some compilation warnings when using gcc (-Wmaybe-uninitialized).Antoine Pitrou2015-05-191-3/+3
|\ \ | |/
| * Fix some compilation warnings when using gcc (-Wmaybe-uninitialized).Antoine Pitrou2015-05-191-17/+17
* | Issue #15027: The UTF-32 encoder is now 3x to 7x faster.Serhiy Storchaka2015-05-121-61/+41
* | Issue #23908: os functions now reject paths with embedded null characterSerhiy Storchaka2015-04-201-15/+0
|\ \ | |/
| * Issue #23803: Fixed str.partition() and str.rpartition() when a separatorSerhiy Storchaka2015-03-291-5/+5
| * merge 3.3 (#23362)Benjamin Peterson2015-03-021-1/+1
| |\
| | * use PyMem_NEW to detect overflow (closes #23362)Benjamin Peterson2015-03-021-1/+1
| | * Issue #23055: Fixed a buffer overflow in PyUnicode_FromFormatV. AnalysisSerhiy Storchaka2015-01-271-0/+2
* | | Issue #23501: Argumen Clinic now generates code into separate files by default.Serhiy Storchaka2015-04-031-39/+3
* | | _PyUnicodeWriter_WriteStr() now checks that the input string is consistentVictor Stinner2015-03-261-0/+1
* | | Issue #23573: Increased performance of string search operations (str.find,Serhiy Storchaka2015-03-241-152/+192
* | | Fix compiler warnings: comparison between signed and unsigned numbersVictor Stinner2015-03-201-1/+1
* | | Initialize variables to prevent GCC warningsVictor Stinner2015-03-181-15/+20
* | | Issue #23451: Update pyconfig.h for Windows to require Vista headers and remo...Steve Dower2015-03-021-18/+1
* | | Issue #23490: Fixed possible crashes related to interoperability betweenSerhiy Storchaka2015-02-201-0/+9
|\ \ \ | |/ /
| * | Issue #23490: Fixed possible crashes related to interoperability betweenSerhiy Storchaka2015-02-201-0/+9
* | | Issue #23446: Use PyMem_New instead of PyMem_Malloc to avoid possible integerSerhiy Storchaka2015-02-161-17/+5
|\ \ \ | |/ /
| * | Issue #23446: Use PyMem_New instead of PyMem_Malloc to avoid possible integerSerhiy Storchaka2015-02-161-17/+5
* | | Issue #15859: PyUnicode_EncodeFSDefault(), PyUnicode_EncodeMBCS() andVictor Stinner2015-01-261-4/+5
* | | Issue #23321: Fixed a crash in str.decode() when error handler returnedSerhiy Storchaka2015-01-251-2/+6
|\ \ \ | |/ /
| * | Issue #23321: Fixed a crash in str.decode() when error handler returnedSerhiy Storchaka2015-01-251-2/+6
* | | Issue20284: Implement PEP461Ethan Furman2015-01-241-7/+5
* | | Issue #23181: More "codepoint" -> "code point".Serhiy Storchaka2015-01-181-2/+2
|\ \ \ | |/ /
| * | Issue #23181: More "codepoint" -> "code point".Serhiy Storchaka2015-01-181-2/+2
* | | Issue #22581: Use more "bytes-like object" throughout the docs and comments.Serhiy Storchaka2014-12-051-2/+1
|\ \ \ | |/ /
| * | Issue #22581: Use more "bytes-like object" throughout the docs and comments.Serhiy Storchaka2014-12-051-2/+1
* | | Issue #22975: Close block at right place.Serhiy Storchaka2014-12-011-1/+1
|\ \ \ | |/ /
| * | Issue #22975: Close block at right place.Serhiy Storchaka2014-12-011-1/+1
| * | Merge 3.3Benjamin Peterson2014-10-161-1/+1
| |\ \ | | |/
| | * Fixed signed/unsigned comparison warningAntoine Pitrou2014-10-151-1/+1
* | | Issue #20948: Inline makefmt() in unicode_fromformat_arg()Victor Stinner2014-11-181-44/+9
* | | Fixed signed/unsigned comparison warningAntoine Pitrou2014-10-151-1/+1