summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Issue #12983: Bytes literals with invalid \x escape now raise a SyntaxErrorSerhiy Storchaka2013-02-101-2/+3
* Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in...Antoine Pitrou2013-02-092-3/+3
* Issue #17043: The unicode-internal decoder no longer read past the end ofSerhiy Storchaka2013-02-071-27/+24
* Issue #17034: Use Py_CLEAR() in bytesobject.c.Serhiy Storchaka2013-02-021-8/+4
* Silence a -Wformat-extra-argument warning when compiling.Gregory P. Smith2013-02-021-7/+15
* Issue #16979: Fix error handling bugs in the unicode-escape-decode decoder.Serhiy Storchaka2013-01-291-51/+28
* Issue #10156: In the interpreter's initialization phase, unicode globalsSerhiy Storchaka2013-01-261-52/+45
* Issue #16975: Fix error handling bug in the escape-decode bytes decoder.Serhiy Storchaka2013-01-251-0/+4
* Issue #16335: Fix integer overflow in unicode-escape decoder.Serhiy Storchaka2013-01-211-1/+2
* Issue #15989: Fix several occurrences of integer overflowSerhiy Storchaka2013-01-193-4/+22
* Issue #14850: Now a chamap decoder treates U+FFFE as "undefined mapping"Serhiy Storchaka2013-01-151-21/+25
* Issue #11461: Fix the incremental UTF-16 decoder. Original patch bySerhiy Storchaka2013-01-081-1/+4
* Fix out of bound read in UTF-32 decoder on "narrow Unicode" builds.Serhiy Storchaka2013-01-081-1/+1
* Issue #16455: On FreeBSD and Solaris, if the locale is C, theVictor Stinner2013-01-031-4/+4
* Issue #16761: Raise TypeError when int() called with base argument only.Serhiy Storchaka2012-12-281-2/+8
* Keep y a Py_hash_t instead of Py_uhash_t as it is compared with == -1 and theGregory P. Smith2012-12-111-1/+2
* Fix the internals of our hash functions to used unsigned values during hashGregory P. Smith2012-12-114-13/+13
* Issue #16602: When a weakref's target was part of a long deallocation chain, ...Antoine Pitrou2012-12-081-3/+2
* Issue #16416: On Mac OS X, operating system data are now alwaysVictor Stinner2012-12-031-4/+5
* Issue #16453: Fix equality testing of dead weakref objects.Antoine Pitrou2012-11-111-3/+7
* Issue #16402: In range slicing, fix shadowing of exceptions from __index__ me...Mark Dickinson2012-11-041-5/+5
* Fix compilation on WindowsChristian Heimes2012-11-031-1/+1
* #8401: assigning an int to a bytearray slice (e.g. b[3:4] = 5) now raises an ...Ezio Melotti2012-11-031-0/+6
* avoid a function call with redundant checks for dict sizeBenjamin Peterson2012-10-311-1/+1
* only fast-path fromkeys() when the constructor returns a empty dict (closes #...Benjamin Peterson2012-10-311-33/+34
* initialize more global type objects (closes #16369)Benjamin Peterson2012-10-312-0/+30
* Issue #14700: Fix buggy overflow checks for large precision and width in new-...Mark Dickinson2012-10-283-20/+15
* Issue #16277: in PyLong_FromVoidPtr, add missing branch for sizeof(void*) <= ...Mark Dickinson2012-10-181-0/+8
* Issue #14783: Improve int() docstring and also str(), range(), and slice().Chris Jerdonek2012-10-074-9/+19
* Issue #15379: Fix passing of non-BMP characters as integers for the charmap d...Antoine Pitrou2012-09-231-2/+26
* Issue 15959: Fix type mismatch for quick{_neg}_int_allocs. Thanks Serhiy Sto...Mark Dickinson2012-09-201-1/+1
* 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
* Fixed memory leak in error branch of object_repr which may leak a reference t...Christian 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
* 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 #15855: added docstrings for memoryview methods and data descriptors.Alexander Belopolsky2012-09-031-11/+43
* use the stricter PyMapping_Check (closes #15801)Benjamin Peterson2012-08-281-2/+1
* Issue #15736: Fix overflow in _PySequence_BytesToCharpArray().Stefan Krah2012-08-211-0/+7
* Issue #15732: Fix (constructed) crash in _PySequence_BytesToCharpArray().Stefan Krah2012-08-201-0/+5
* Check for NULL return value in PyStructSequence_NewType(). Found by Coverity.Stefan Krah2012-08-191-1/+3
* Fix str docstringNick Coghlan2012-08-161-4/+8
* Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors...Antoine Pitrou2012-08-151-5/+7
* Issue #14579: Fix CVE-2012-2135: vulnerability in the utf-16 decoder after er...Antoine Pitrou2012-07-201-31/+21
* Issue #15404: Refleak in PyMethodObject repr.Andrew Svetlov2012-07-201-1/+3
* Issue #15394: Fix ref leaks in PyModule_Create.Meador Inge2012-07-191-1/+7
* Issue #15142: Fix reference leak when deallocating instances of types created...Antoine Pitrou2012-06-231-0/+6
* Issue #14829: Fix bisect and range() indexing with large indices (>= 2 ** 32)...Antoine Pitrou2012-05-161-1/+1