summaryrefslogtreecommitdiffstats
path: root/Objects/unicodeobject.c
Commit message (Expand)AuthorAgeFilesLines
* Fix some compilation warnings when using gcc (-Wmaybe-uninitialized).Antoine Pitrou2015-05-191-17/+17
* 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 #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 #23321: Fixed a crash in str.decode() when error handler returnedSerhiy Storchaka2015-01-251-2/+6
* | 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 #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
* | merge 3.3Benjamin Peterson2014-10-151-3/+2
|\ \ | |/
| * it suffices to check for PY_SSIZE_T_MAX overflow (#22643)Benjamin Peterson2014-10-151-3/+2
* | Merge 3.3Benjamin Peterson2014-10-151-1/+1
|\ \ | |/
| * make sure length is unsignedBenjamin Peterson2014-10-151-1/+1
* | merge 3.3 (#22643)Benjamin Peterson2014-10-151-0/+5
|\ \ | |/
| * fix integer overflow in unicode case operations (closes #22643)Benjamin Peterson2014-10-151-0/+5
* | merge 3.3 (#22520)Benjamin Peterson2014-09-301-11/+17
|\ \ | |/
| * prevent overflow in unicode_repr (closes #22520)Benjamin Peterson2014-09-301-11/+17
* | merge 3.3 (closes #22518)Benjamin Peterson2014-09-291-17/+47
|\ \ | |/
| * cleanup overflowing handling in unicode_decode_call_errorhandler and unicode_...Benjamin Peterson2014-09-291-18/+56
* | Issue #21892, #21893: Partial revert of changeset 4f55e802baf0, PyErr_Format()Victor Stinner2014-07-041-18/+8
* | Closes #21892, #21893: Use PY_FORMAT_SIZE_T instead of %zi or %zu to format CVictor Stinner2014-07-011-11/+23
* | Make the various iterators' "setstate" sliently and consistently clip theKristján Valur Jónsson2014-03-051-3/+7
|\ \ | |/
| * Make the various iterators' "setstate" sliently and consistently clip theKristján Valur Jónsson2014-03-051-3/+7
| * Issue #19619: Blacklist non-text codecs in method APISerhiy Storchaka2014-02-241-2/+2
* | merge 3.3 (#20507)Benjamin Peterson2014-02-151-1/+1
|\ \ | |/
| * give non-iterable TypeError a message (closes #20507)Benjamin Peterson2014-02-151-1/+1
* | Issue #20437: Fixed 22 potential bugs when deleting objects references.Serhiy Storchaka2014-02-091-10/+5
|\ \ | |/
| * Issue #20437: Fixed 21 potential bugs when deleting objects references.Serhiy Storchaka2014-02-091-8/+4
* | Issue #20530: Argument Clinic's signature format has been revised again.Larry Hastings2014-02-091-2/+4
* | Issue #20538: UTF-7 incremental decoder produced inconsistant string whenSerhiy Storchaka2014-02-081-1/+9
|\ \ | |/
| * Issue #20538: UTF-7 incremental decoder produced inconsistant string whenSerhiy Storchaka2014-02-081-1/+9
* | Issue #20326: Argument Clinic now uses a simple, unique signature toLarry Hastings2014-01-281-3/+3
* | Issue #20390: Small fixes and improvements for Argument Clinic.Larry Hastings2014-01-261-1/+1
* | Issue #20189: Four additional builtin types (PyTypeObject,Larry Hastings2014-01-241-4/+4
* | Issue19995: fixed typo; switched from test.support.check_warnings to assertWarnsEthan Furman2014-01-121-2/+2
* | Issue19995: issue deprecation warning for non-integer values to %c, %o, %x, %XEthan Furman2014-01-121-2/+27
* | Issue #19273: The marker comments Argument Clinic uses have been changedLarry Hastings2014-01-071-6/+6
* | Issue19995: %o, %x, %X now only accept intsEthan Furman2014-01-051-8/+27
* | Reverted changeset b72c5573c5e7 (issue #15027).Serhiy Storchaka2014-01-041-41/+61
* | Issue #15027: Rewrite the UTF-32 encoder. It is now 1.6x to 3.5x faster.Serhiy Storchaka2014-01-041-61/+41
* | Remove deadcode (HASH macro is no more defined)Victor Stinner2014-01-031-1/+0
* | Remove now unused variablesVictor Stinner2014-01-031-5/+0
* | unicode_char() uses get_latin1_char() to get latin1 singleton charactersVictor Stinner2014-01-031-0/+3
* | add unicode_char() in unicodeobject.c to factorize codeVictor Stinner2014-01-031-55/+31
* | Issue #19674: inspect.signature() now produces a correct signatureLarry Hastings2013-11-231-4/+7
* | Issue #19730: Argument Clinic now supports all the existing PyArgLarry Hastings2013-11-231-5/+5