summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* long_to_decimal_string_internal() doesn't need to write the final NULL characterVictor Stinner2012-10-041-1/+0
* unicode_result_wchar(): move the assert() to the "#ifdef Py_DEBUG" blockVictor Stinner2012-10-041-3/+3
* Split the huge PyUnicode_Format() function (+540 lines) into subfunctionsVictor Stinner2012-10-041-472/+605
* PyUnicode_Format(): disable overallocation when we are writing the last partVictor Stinner2012-10-031-1/+3
* Unicode: resize_compact() and resize_inplace() fills also the Unicode stringsVictor Stinner2012-10-031-5/+33
* Issue #15609: Fix refleak introduced by my last optimizationVictor Stinner2012-10-021-1/+4
* Issue #15609: Optimize str%args for integer argumentVictor Stinner2012-10-011-67/+101
* upgrade to UCD 6.2Benjamin Peterson2012-09-291-3/+10
* Fix typo.Ezio Melotti2012-09-281-2/+2
* Issue #16060: Fix a double DECREF in int() implementation. Thanks Serhiy Sto...Mark Dickinson2012-09-271-4/+3
* Issue #15379: Fix passing of non-BMP characters as integers for the charmap d...Antoine Pitrou2012-09-231-3/+4
|\
| * Issue #15379: Fix passing of non-BMP characters as integers for the charmap d...Antoine Pitrou2012-09-231-2/+26
* | Issue 15959: Merge from 3.2.Mark Dickinson2012-09-201-1/+1
|\ \ | |/
| * Issue 15959: Fix type mismatch for quick{_neg}_int_allocs. Thanks Serhiy Sto...Mark Dickinson2012-09-201-1/+1
* | Issue #15144: Fix possible integer overflow when handling pointers as integer...Antoine Pitrou2012-09-205-32/+18
* | Silence compiler warnings on Solaris 10 via explicit (void *) casts.Trent Nelson2012-09-191-3/+3
|\ \ | |/
| * Silence compiler warnings on Solaris 10 via explicit (void *) casts.Trent Nelson2012-09-191-3/+3
* | Fix out of bounds read in long_new() for empty bytes with an explicit base. i...Christian Heimes2012-09-121-2/+2
|\ \ | |/
| * Fix out of bounds read in long_new() for empty bytes with an explicit base. i...Christian Heimes2012-09-121-2/+2
* | Issue #15900: Fixed reference leak in PyUnicode_TranslateCharmap()Christian Heimes2012-09-111-6/+5
* | Fixed memory leak in error branch of object_repr which may leak a reference t...Christian Heimes2012-09-101-1/+3
|\ \ | |/
| * Fixed memory leak in error branch of object_repr which may leak a reference t...Christian Heimes2012-09-101-1/+3
* | Fixed memory leak in error branch of formatfloat(). CID 719687Christian Heimes2012-09-101-1/+3
* | Fixed possible reference leak to mod when type_name() returns NULLChristian Heimes2012-09-101-1/+3
|\ \ | |/
| * Fixed possible reference leak to mod when type_name() returns NULLChristian Heimes2012-09-101-1/+3
* | PyTuple_Pack() was missing va_end() in its error branch which lead to a resou...Christian Heimes2012-09-101-1/+3
|\ \ | |/
| * PyTuple_Pack() was missing va_end() in its error branch which lead to a resou...Christian Heimes2012-09-101-1/+3
* | Fixed resource leak to scratch when _PyUnicodeWriter_Prepare failsChristian Heimes2012-09-101-1/+3
* | Py_TYPE() has already dereferenced self before the NULL check. Moved Py_TYPE(...Christian Heimes2012-09-101-1/+2
|\ \ | |/
| * Py_TYPE() has already dereferenced self before the NULL check. Moved Py_TYPE(...Christian Heimes2012-09-101-1/+2
* | Issue #13992: The trashcan mechanism is now thread-safe. This eliminatesAntoine Pitrou2012-09-052-0/+42
|\ \ | |/
| * Issue #13992: The trashcan mechanism is now thread-safe. This eliminatesAntoine Pitrou2012-09-052-0/+42
* | Issue #15855: added docstrings for memoryview methods and data descriptors ne...Alexander Belopolsky2012-09-031-13/+28
* | Issue #15855: added docstrings for memoryview methods and data descriptors (m...Alexander Belopolsky2012-09-031-10/+41
|\ \ | |/
| * Issue #15855: added docstrings for memoryview methods and data descriptors.Alexander Belopolsky2012-09-031-11/+43
* | Fix C++-style comment (xlc compilation failure)Antoine Pitrou2012-09-021-1/+1
* | Make super() internal errors RuntimeError instead of SystemError (closes #15839)Benjamin Peterson2012-09-021-7/+7
* | merge headsBenjamin Peterson2012-08-281-2/+2
|\ \
| * | Issue #15784: Modify OSError.__str__() to better distinguish betweenRichard Oudkerk2012-08-281-2/+2
* | | merge 3.2 (#15801)Benjamin Peterson2012-08-281-2/+1
|\ \ \ | |/ / |/| / | |/
| * use the stricter PyMapping_Check (closes #15801)Benjamin Peterson2012-08-281-2/+1
* | Close #15573: use value-based memoryview comparisons (patch by Stefan Krah)Nick Coghlan2012-08-251-43/+283
* | Issue #15778: Coerce ImportError.args to a string when it isn'tBrett Cannon2012-08-241-1/+1
* | Merge 3.2.Stefan Krah2012-08-211-0/+7
|\ \ | |/
| * Issue #15736: Fix overflow in _PySequence_BytesToCharpArray().Stefan Krah2012-08-211-0/+7
* | Merge 3.2.Stefan Krah2012-08-201-0/+5
|\ \ | |/
| * Issue #15732: Fix (constructed) crash in _PySequence_BytesToCharpArray().Stefan Krah2012-08-201-0/+5
* | Issue #15728: Fix leak in PyUnicode_AsWideCharString(). Found by Coverity.Stefan Krah2012-08-191-1/+3
* | Mereg 3.2.Stefan Krah2012-08-191-1/+3
|\ \ | |/
| * Check for NULL return value in PyStructSequence_NewType(). Found by Coverity.Stefan Krah2012-08-191-1/+3