summaryrefslogtreecommitdiff
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Issue #14630: Merge fix from 3.2.Mark Dickinson2012-04-201-3/+1
|\
| * Issue #14630: Fix an incorrect access of ob_digit[0] for a zero instance of a...Mark Dickinson2012-04-201-3/+1
* | Issue #14339: Improve speed of bin, oct and hex builtins. Patch by Serhiy St...Mark Dickinson2012-04-201-26/+31
* | Issue #14385: Support other types than dict for __builtins__Victor Stinner2012-04-191-4/+2
* | merge 3.2 (#14612)Benjamin Peterson2012-04-181-2/+4
|\ \ | |/
| * SETUP_WITH acts like SETUP_FINALLY for the purposes of setting f_lineno (clos...Benjamin Peterson2012-04-181-2/+4
* | Issue #14386: Expose the dict_proxy internal type as types.MappingProxyTypeVictor Stinner2012-04-161-60/+110
* | Issue #2377: Make importlib the implementation of __import__().Brett Cannon2012-04-143-6/+41
* | Issue #1559549: Add 'name' and 'path' attributes to ImportError.Brett Cannon2012-04-121-2/+97
* | merge 3.2 (#14509)Benjamin Peterson2012-04-092-0/+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
* | | Close #14249: Use bit shifts instead of an union, it's more efficient.Victor Stinner2012-04-051-27/+34
* | | Close #14249: Use an union instead of a long to short pointer to avoid aliasingVictor Stinner2012-04-051-19/+25
* | | Rename _PyIter_GetBuiltin to _PyObject_GetBuiltin, and do not include it in t...Antoine Pitrou2012-04-0510-32/+32
* | | Issue #14288: Serialization support for builtin iterators.Kristján Valur Jónsson2012-04-0310-6/+509
* | | merge 3.2Benjamin Peterson2012-04-011-13/+9
|\ \ \ | |/ /
| * | adjust formattingBenjamin Peterson2012-04-011-5/+5
| * | remove extraneous conditionBenjamin Peterson2012-04-011-6/+4
| * | merge headsBenjamin Peterson2012-04-011-2/+6
| |\ \
| * | | be consistent with rest of functionBenjamin Peterson2012-04-011-2/+1
* | | | Issue #13019: Fix potential reference leaks in bytearray.extend().Antoine Pitrou2012-04-011-2/+6
|\ \ \ \ | | |/ / | |/| |
| * | | Issue #13019: Fix potential reference leaks in bytearray.extend().Antoine Pitrou2012-04-011-2/+6
| |/ /
* | | Issue #14435: Remove special block allocation code from floatobject.cKristján Valur Jónsson2012-03-301-131/+27
* | | Issue #14383: Add _PyDict_GetItemId() and _PyDict_SetItemId() functionsVictor Stinner2012-03-262-118/+105
* | | grammarBenjamin Peterson2012-03-261-1/+1
* | | merge 3.2Benjamin Peterson2012-03-251-4/+0
|\ \ \ | |/ /
| * | kill this terribly outdated commentBenjamin Peterson2012-03-251-4/+0
* | | Issue #14387: Do not include accu.h from Python.h.Antoine Pitrou2012-03-224-0/+4
|\ \ \ | |/ /
| * | Issue #14387: Do not include accu.h from Python.h.Antoine Pitrou2012-03-223-0/+3
* | | Micro-optimize PyObject_GetAttrString()Victor Stinner2012-03-221-1/+1
* | | long() -> int()Benjamin Peterson2012-03-211-2/+2
* | | make _PyNumber_ConvertIntegralToInt static, since it's only used in abstract.cBenjamin Peterson2012-03-211-4/+10
* | | rewrite this function, which was still accounting for classic classesBenjamin Peterson2012-03-211-24/+12
* | | correctly lookup __trunc__ in int() constructorBenjamin Peterson2012-03-201-2/+3
* | | some more identifier goodnessBenjamin Peterson2012-03-201-27/+8
* | | make extra arguments to object.__init__/__new__ to errors in most cases (fini...Benjamin Peterson2012-03-171-35/+10
* | | simply this slightlyBenjamin Peterson2012-03-161-9/+6
* | | merge 3.2 (#14334)Benjamin Peterson2012-03-161-0/+7
|\ \ \ | |/ /
| * | check to make sure the attribute is a string (#14334)Benjamin Peterson2012-03-161-0/+7
* | | spaceBenjamin Peterson2012-03-151-1/+1
* | | perform yield from delegation by repeating YIELD_FROM opcode (closes #14230)Benjamin Peterson2012-03-152-124/+59
* | | Close #14232: catch mmap() failure in new_arena() of obmallocVictor Stinner2012-03-101-3/+8
* | | refactor and avoid warningsBenjamin Peterson2012-03-091-7/+5
* | | Issue #14211: _PyObject_GenericSetAttrWithDict() keeps a strong reference toVictor Stinner2012-03-091-4/+5
* | | Close #14199: _PyType_Lookup() and super_getattro() keep a strong reference toVictor Stinner2012-03-091-0/+9
* | | merge 3.2 (#3787e896dbe9)Benjamin Peterson2012-03-071-2/+7
|\ \ \ | |/ /
| * | allow cycles throught the __dict__ slot to be cleared (closes #1469629)Benjamin Peterson2012-03-071-2/+7
* | | make gi_running a booleanBenjamin Peterson2012-03-071-1/+1
* | | indicate we're not running as we leave this blockBenjamin Peterson2012-03-071-0/+1