summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Close #14232: catch mmap() failure in new_arena() of obmallocVictor Stinner2012-03-091-3/+8
* refactor and avoid warningsBenjamin Peterson2012-03-091-7/+5
* Issue #14211: _PyObject_GenericSetAttrWithDict() keeps a strong reference toVictor Stinner2012-03-081-4/+5
* Close #14199: _PyType_Lookup() and super_getattro() keep a strong reference toVictor Stinner2012-03-081-0/+9
* merge 3.2 (#3787e896dbe9)Benjamin Peterson2012-03-081-2/+7
|\
| * allow cycles throught the __dict__ slot to be cleared (closes #1469629)Benjamin Peterson2012-03-081-2/+7
* | make gi_running a booleanBenjamin Peterson2012-03-081-1/+1
* | indicate we're not running as we leave this blockBenjamin Peterson2012-03-081-0/+1
* | make delegating generators say they running (closes #14220)Benjamin Peterson2012-03-071-14/+37
* | Whitespace.Stefan Krah2012-03-061-1/+1
* | Remove an unused variableVictor Stinner2012-03-061-1/+0
* | Close #14205: dict lookup raises a RuntimeError if the dict is modified duringVictor Stinner2012-03-061-12/+6
* | Merge.Stefan Krah2012-03-051-1/+0
|\ \
| * | remove f_yieldfrom access from Python (closes #13970)Benjamin Peterson2012-03-051-1/+0
* | | Issue #14181: Preserve backwards compatibility for getbufferprocs that a) doStefan Krah2012-03-051-1/+1
|/ /
* | Issue #14181: Allow memoryview construction from an object that uses theStefan Krah2012-03-051-3/+0
* | Close #14085: remove assertions from PyUnicode_WRITE macroVictor Stinner2012-03-041-1/+10
* | Issue #13521: dict.setdefault() now does only one lookup for the given key, m...Antoine Pitrou2012-02-261-42/+70
|\ \ | |/
| * Issue #13521: dict.setdefault() now does only one lookup for the given key, m...Antoine Pitrou2012-02-261-42/+70
* | Close issue #6210: Implement PEP 409Nick Coghlan2012-02-261-11/+18
* | #14081: The sep and maxsplit parameter to str.split, bytes.split, and bytearr...Ezio Melotti2012-02-263-24/+36
* | - Issue #10181: New memoryview implementation fixes multiple ownershipStefan Krah2012-02-253-570/+2312
* | Close #14095: type.__new__() doesn't remove __qualname__ key from the classVictor Stinner2012-02-251-85/+70
* | Oops, revert unwanted changesVictor Stinner2012-02-241-18/+6
* | Issue #14107: fix bigmem tests on str.capitalize(), str.swapcase() andVictor Stinner2012-02-241-6/+18
* | Fix compilation error under Windows (and warnings too).Antoine Pitrou2012-02-241-9/+9
* | Issue #13706: Fix format(float, "n") for locale with non-ASCII decimal point ...Victor Stinner2012-02-241-5/+16
* | Issue #13706: Fix format(int, "n") for locale with non-ASCII thousands separatorVictor Stinner2012-02-239-83/+81
* | Fix doc of an internal function: unicode_write_cstr()Victor Stinner2012-02-221-2/+3
* | Fix compile failure under WindowsAntoine Pitrou2012-02-221-1/+1
* | Optimize str%arg for number formats: %i, %d, %u, %x, %pVictor Stinner2012-02-221-4/+52
* | Micro-optimize computation of maxchar in PyUnicode_TransformDecimalToASCII()Victor Stinner2012-02-221-2/+2
* | Micro-optimize unicode_expandtabs(): use FILL() macro to write N spacesVictor Stinner2012-02-221-5/+2
* | PyUnicode_New() and unicode_putchar() check for MAX_UNICODE maximum (U+10FFFF)Victor Stinner2012-02-221-0/+2
* | merge 3.2Benjamin Peterson2012-02-212-0/+2
|\ \ | |/
| * 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
* | | update to Unicode 6.1Benjamin Peterson2012-02-211-1166/+1273
* | | Forgot the "empty string -> hash == 0" special case for strings.Georg Brandl2012-02-201-0/+8
* | | Merge 3.2: Issue #13703 plus some related test suite fixes.Georg Brandl2012-02-202-6/+19
|\ \ \ | |/ /
| * | 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
* | | check for NULL to fix segfaultBenjamin Peterson2012-02-201-1/+1
* | | use new generic __dict__ descriptor implementationsBenjamin Peterson2012-02-202-90/+4
* | | add generic implementation of a __dict__ descriptor for C typesBenjamin Peterson2012-02-202-18/+46
* | | initialize __dict__ if neededBenjamin Peterson2012-02-191-6/+12
* | | use defaultsBenjamin Peterson2012-02-191-3/+3
* | | merge 3.2Benjamin Peterson2012-02-191-3/+1
|\ \ \ | |/ /
| * | use Py_CLEARBenjamin Peterson2012-02-191-3/+1
* | | allow arbitrary attributes on classmethod and staticmethod (closes #14051)Benjamin Peterson2012-02-191-3/+27