summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* 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
* Remove tab charactersAntoine Pitrou2012-05-141-8/+8
* Use size_t, not ssize_t (issue #14801).Antoine Pitrou2012-05-141-1/+1
* fix possible refleak (closes #14752)Benjamin Peterson2012-05-081-2/+4
* close() doesn't take any args (closes #14717)Benjamin Peterson2012-05-031-1/+1
* fix calling the classmethod descriptor directly (closes #14699)Benjamin Peterson2012-05-011-3/+41
* don't use a slot wrapper from a different special method (closes #14658)Benjamin Peterson2012-04-241-2/+3
* Issue #14630: Fix an incorrect access of ob_digit[0] for a zero instance of a...Mark Dickinson2012-04-201-3/+1
* SETUP_WITH acts like SETUP_FINALLY for the purposes of setting f_lineno (clos...Benjamin Peterson2012-04-181-2/+4
* merge 3.1 (#14509)Benjamin Peterson2012-04-092-0/+4
|\
| * fix build without Py_DEBUG and DNDEBUG (closes #14509)Benjamin Peterson2012-04-092-0/+4
* | adjust formattingBenjamin Peterson2012-04-011-5/+5
* | remove extraneous conditionBenjamin Peterson2012-04-011-6/+4
* | merge headsBenjamin Peterson2012-04-011-2/+6
|\ \
| * | Issue #13019: Fix potential reference leaks in bytearray.extend().Antoine Pitrou2012-04-011-2/+6
* | | be consistent with rest of functionBenjamin Peterson2012-04-011-2/+1
|/ /
* | kill this terribly outdated commentBenjamin Peterson2012-03-261-4/+0
* | Issue #14387: Do not include accu.h from Python.h.Antoine Pitrou2012-03-223-0/+3
* | check to make sure the attribute is a string (#14334)Benjamin Peterson2012-03-161-0/+7
* | allow cycles throught the __dict__ slot to be cleared (closes #1469629)Benjamin Peterson2012-03-081-2/+7
* | Issue #13521: dict.setdefault() now does only one lookup for the given key, m...Antoine Pitrou2012-02-261-42/+70
* | merge 3.2Benjamin Peterson2012-02-212-0/+2
|\ \ | |/
| * ensure no one tries to hash things before the random seed is foundBenjamin Peterson2012-02-212-0/+2
* | Merge from 3.1: Issue #13703: add a way to randomize the hash values of basic...Georg Brandl2012-02-203-2/+24
|\ \ | |/
| * Issue #13703: add a way to randomize the hash values of basic types (str, byt...Georg Brandl2012-02-203-2/+24
* | use Py_CLEARBenjamin Peterson2012-02-191-3/+1
* | Fix indentationAntoine Pitrou2012-02-151-12/+12
* | Issue #13020: Fix a reference leak when allocating a structsequence object fa...Antoine Pitrou2012-02-151-0/+1
* | Issue #13913: normalize utf-8 codec name in UTF-8 decoderVictor Stinner2012-02-141-1/+1