- e81dc29 Fixed memory leak in error branch of object_repr which may leak a reference to mod when type_name returns NULL. CID 715371 by Christian Heimes · 12 years ago
- a0e7e41 Fixed possible reference leak to mod when type_name() returns NULL by Christian Heimes · 12 years ago
- d5a8804 PyTuple_Pack() was missing va_end() in its error branch which lead to a resource leak. by Christian Heimes · 12 years ago
- 949f331 Py_TYPE() has already dereferenced self before the NULL check. Moved Py_TYPE() after the check for self == NULL by Christian Heimes · 12 years ago
- 56cd62c Issue #13992: The trashcan mechanism is now thread-safe. This eliminates by Antoine Pitrou · 12 years ago
- 397e5c9 Issue #15855: added docstrings for memoryview methods and data descriptors. by Alexander Belopolsky · 12 years ago
- 28a6cfa use the stricter PyMapping_Check (closes #15801) by Benjamin Peterson · 12 years ago
- 7cacd2e Issue #15736: Fix overflow in _PySequence_BytesToCharpArray(). by Stefan Krah · 12 years ago
- fd24f9e Issue #15732: Fix (constructed) crash in _PySequence_BytesToCharpArray(). by Stefan Krah · 12 years ago
- 6b96286 Check for NULL return value in PyStructSequence_NewType(). Found by Coverity. by Stefan Krah · 12 years ago
- 573b1fd Fix str docstring by Nick Coghlan · 12 years ago
- 6f430e4 Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors correctly. by Antoine Pitrou · 12 years ago
- b4bbee2 Issue #14579: Fix CVE-2012-2135: vulnerability in the utf-16 decoder after error handling. by Antoine Pitrou · 12 years ago
- ddcb620 Issue #15404: Refleak in PyMethodObject repr. by Andrew Svetlov · 12 years ago
- 29e49d6 Issue #15394: Fix ref leaks in PyModule_Create. by Meador Inge · 12 years ago
- 99cc629 Issue #15142: Fix reference leak when deallocating instances of types created using PyType_FromSpec(). by Antoine Pitrou · 12 years ago
- a103b96 Issue #14829: Fix bisect and range() indexing with large indices (>= 2 ** 32) under 64-bit Windows. by Antoine Pitrou · 12 years ago
- a1433fe Remove tab characters by Antoine Pitrou · 13 years ago
- 682d94c Use size_t, not ssize_t (issue #14801). by Antoine Pitrou · 13 years ago
- 89a6e9a fix possible refleak (closes #14752) by Benjamin Peterson · 13 years ago
- ab3da29 close() doesn't take any args (closes #14717) by Benjamin Peterson · 13 years ago
- 7295c6a fix calling the classmethod descriptor directly (closes #14699) by Benjamin Peterson · 13 years ago
- 7b16687 don't use a slot wrapper from a different special method (closes #14658) by Benjamin Peterson · 13 years ago
- bcc17ee Issue #14630: Fix an incorrect access of ob_digit[0] for a zero instance of an int subclass. by Mark Dickinson · 13 years ago
- e42fb30 SETUP_WITH acts like SETUP_FINALLY for the purposes of setting f_lineno (closes #14612) by Benjamin Peterson · 13 years ago
- ca819c3 merge 3.1 (#14509) by Benjamin Peterson · 13 years ago
- f6622c8 fix build without Py_DEBUG and DNDEBUG (closes #14509) by Benjamin Peterson · 13 years ago
- b6af60c adjust formatting by Benjamin Peterson · 13 years ago
- 3471bb6 remove extraneous condition by Benjamin Peterson · 13 years ago
- 29f8438 merge heads by Benjamin Peterson · 13 years ago
- ab3c1c1 be consistent with rest of function by Benjamin Peterson · 13 years ago
- 58bb82e Issue #13019: Fix potential reference leaks in bytearray.extend(). by Antoine Pitrou · 13 years ago
- a8755c5 kill this terribly outdated comment by Benjamin Peterson · 13 years ago
- 0197ff9 Issue #14387: Do not include accu.h from Python.h. by Antoine Pitrou · 13 years ago
- 16d84ac check to make sure the attribute is a string (#14334) by Benjamin Peterson · 13 years ago
- 52c4243 allow cycles throught the __dict__ slot to be cleared (closes #1469629) by Benjamin Peterson · 13 years ago
- e965d97 Issue #13521: dict.setdefault() now does only one lookup for the given key, making it "atomic" for many purposes. by Antoine Pitrou · 13 years ago
- e249dca merge 3.2 by Benjamin Peterson · 13 years ago
- 69e9727 ensure no one tries to hash things before the random seed is found by Benjamin Peterson · 13 years ago
- 09a7c72 Merge from 3.1: Issue #13703: add a way to randomize the hash values of basic types (str, bytes, datetime) by Georg Brandl · 13 years ago
- 2daf6ae Issue #13703: add a way to randomize the hash values of basic types (str, bytes, datetime) by Georg Brandl · 13 years ago
- 496c53d use Py_CLEAR by Benjamin Peterson · 13 years ago
- 4b3c784 Fix indentation by Antoine Pitrou · 13 years ago
- 37784ba Issue #13020: Fix a reference leak when allocating a structsequence object fails. by Antoine Pitrou · 13 years ago
- cbe0134 Issue #13913: normalize utf-8 codec name in UTF-8 decoder by Victor Stinner · 13 years ago
- efe7c9d this is only a borrowed ref in Brett's branch by Benjamin Peterson · 13 years ago
- 2f9c71b bltinmod is borrowed, so it shouldn't be decrefed by Benjamin Peterson · 13 years ago
- 90b1358 put returns on their own lines by Benjamin Peterson · 13 years ago
- 2652d25 ready types returned from PyType_FromSpec by Benjamin Peterson · 13 years ago
- e28108c adjust declaration by Benjamin Peterson · 13 years ago
- 1334884 Issue #13848: open() and the FileIO constructor now check for NUL characters in the file name. by Antoine Pitrou · 13 years ago
- 261896b Issue #13889: Add missing _Py_SET_53BIT_PRECISION_* calls around uses of dtoa.c functions in float round. by Mark Dickinson · 13 years ago
- beca27a Fix #13834: strip() strips leading and trailing whitespace. by Georg Brandl · 13 years ago
- 55f217f Fix refleaks in test_capi (this was easier than I thought!) by Antoine Pitrou · 13 years ago
- 1c7ade5 Fix leaking a RuntimeError objects when creating sub-interpreters by Antoine Pitrou · 13 years ago
- 63e6c32 Consolidate the occurrances of the prime used as the multiplier when hashing by Gregory P. Smith · 13 years ago
- 53aa1d7 fix possible if unlikely leak by Benjamin Peterson · 13 years ago
- ac0675c Small clarification in docstring of dict.update(): the positional argument is not required. by Georg Brandl · 13 years ago
- bb2e9c4 Issue #11231: Fix bytes and bytearray docstrings by Victor Stinner · 13 years ago
- 2e87208 Fix the fix for issue #12149: it was incorrect, although it had the side by Antoine Pitrou · 13 years ago
- ab1d16b Issue #13093: Fix error handling on PyUnicode_EncodeDecimal() by Victor Stinner · 13 years ago
- 5418ee0 Issue #13333: The UTF-7 decoder now accepts lone surrogates by Antoine Pitrou · 13 years ago
- d3baae7 Issue #13161: fix doc strings of __i*__ operators by Eli Bendersky · 13 years ago
- ebfaabd Revert "Accept None as start and stop parameters for list.index() and tuple.index()" by Petri Lehtinen · 13 years ago
- c2f0a46 Accept None as start and stop parameters for list.index() and tuple.index() by Petri Lehtinen · 13 years ago
- 2b50a01 remove unused variable by Benjamin Peterson · 13 years ago
- e0aa803 Fix the return value of set_discard (issue #10519) by Petri Lehtinen · 13 years ago
- 5acc27e Avoid unnecessary recursive function calls (closes #10519) by Petri Lehtinen · 13 years ago
- a94200e Issue #13018: Fix reference leaks in error paths in dictobject.c. by Petri Lehtinen · 13 years ago
- de31b19 Issue 1294232: Fix errors in metaclass calculation affecting some cases of metaclass inheritance. Patch by Daniel Urban. by Nick Coghlan · 13 years ago
- 9d9141f adjust braces a bit by Benjamin Peterson · 13 years ago
- 551ba20 Issue #13188: When called without an explicit traceback argument, by Antoine Pitrou · 13 years ago
- 2963fe0 plug possible refleak (closes #13199) by Benjamin Peterson · 13 years ago
- eeb7eea Issue #12911: Fix memory consumption when calculating the repr() of huge tuples or lists. by Antoine Pitrou · 13 years ago
- c0420fd Issue #12973: Fix undefined-behaviour-inducing overflow check in list_repeat. by Mark Dickinson · 13 years ago
- b77c6c6 Issue #12963: PyLong_AsSize_t() now returns (size_t)-1 in all error cases. by Stefan Krah · 13 years ago
- d88d983 Fix PyUnicode_AsWideCharString() doc: size doesn't contain the null character by Victor Stinner · 13 years ago
- eff61f6 make sure to initialize the method wrapper type by Benjamin Peterson · 13 years ago
- 93e7afc #9200: The str.is* methods now work with strings that contain non-BMP characters even in narrow Unicode builds. by Ezio Melotti · 13 years ago
- a370fcf Issue #12791: Break reference cycles early when a generator exits with an exception. by Antoine Pitrou · 13 years ago
- 7a6b44a the named of the character is actually NUL by Benjamin Peterson · 13 years ago
- 5ad517a NUL -> NULL by Benjamin Peterson · 13 years ago
- ae13c88 fix possible refleaks by Benjamin Peterson · 13 years ago
- ee8d998 #12266: Fix str.capitalize() to correctly uppercase/lowercase titlecased and cased non-letter characters. by Ezio Melotti · 13 years ago
- f413b80 in narrow builds, make sure to test codepoints as identifier characters (closes #12732) by Benjamin Peterson · 13 years ago
- 43a976e remove duplicated type ready by Benjamin Peterson · 13 years ago
- 53516a8 Fix closes Issue12621 - Fix docstrings of find and rfind methods of bytes/bytearry/unicodeobject. by Senthil Kumaran · 13 years ago
- 12ebefc Closes #12579. Positional fields with str.format_map() now raise a ValueError instead of SystemError. by Eric V. Smith · 13 years ago
- ff35050 Issue #11603: Fix a crash when __str__ is rebound as __repr__. by Antoine Pitrou · 13 years ago
- 8cdc40e Issue #11603: Fix a crash when __str__ is rebound as __repr__. by Antoine Pitrou · 13 years ago
- 84f1b17 Issue #12149: Update the method cache after a type's dictionnary gets by Antoine Pitrou · 13 years ago
- 9ebe08d Fix closes issue12471 - wrong TypeError message when '%i' format spec was used. by Senthil Kumaran · 13 years ago
- 84e3ccc Fix closes Issue12385 - Clarify maketrans method docstring for bytes and bytearray object. by Senthil Kumaran · 13 years ago
- 17658a1 merge 3.1 by Benjamin Peterson · 13 years ago
- fbe56bb use '->' to indicate return values by Benjamin Peterson · 13 years ago
- f5fcd33 merge 3.1 by Benjamin Peterson · 13 years ago
- 7963a35 correctly lookup __dir__ by Benjamin Peterson · 13 years ago
- eda70b8 #11335: Fix memory leak after key function failure in sort by Daniel Stutzbach · 14 years ago
- d956131 (Merge 3.1) Issue #9756: When calling a method descriptor or a slot wrapper by Victor Stinner · 14 years ago
- 3249dec Issue #9756: When calling a method descriptor or a slot wrapper descriptor, the by Victor Stinner · 14 years ago