summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Issue #14783: Merge changes from 3.2.Chris Jerdonek2012-10-074-10/+20
|\
| * Issue #14783: Improve int() docstring and also str(), range(), and slice().Chris Jerdonek2012-10-074-9/+19
* | Issue #16096: Fix signed overflow in Objects/longobject.c. Thanks Serhiy Sto...Mark Dickinson2012-10-061-3/+2
* | Issue #16096: Fix several occurrences of potential signed integer overflow. ...Mark Dickinson2012-10-062-22/+13
* | #16127: remove outdated references to narrow builds. Patch by Serhiy Storchaka.Ezio Melotti2012-10-051-10/+4
* | Fix PyUnicode_Format(): return NULL if PyUnicode_READY(uformat) failedVictor Stinner2012-10-041-1/+3
* | 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
* | Merge str docstring fix from 3.2Nick Coghlan2012-08-161-4/+8
|\ \ | |/
| * Fix str docstringNick Coghlan2012-08-161-4/+8