summaryrefslogtreecommitdiffstats
path: root/Objects/abstract.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #16148: Small improvements and cleanup. Added version informationArmin Ronacher2012-10-071-7/+8
* and another oneChristian Heimes2012-10-061-2/+2
* move var declaration to top of block to fix compilation on Windows, fixes a7e...Christian Heimes2012-10-061-2/+4
* Issue #16148: implemented PEP 424Armin Ronacher2012-10-061-29/+47
* Issue #16060: Fix a double DECREF in int() implementation. Thanks Serhiy Sto...Mark Dickinson2012-09-271-4/+3
* Merge 3.2.Stefan Krah2012-08-211-0/+7
|\
| * Issue #15736: Fix overflow in _PySequence_BytesToCharpArray().Stefan Krah2012-08-211-0/+7
* | Merge 3.2.Stefan Krah2012-08-201-0/+5
|\ \ | |/
| * Issue #15732: Fix (constructed) crash in _PySequence_BytesToCharpArray().Stefan Krah2012-08-201-0/+5
* | Issue #12834: Fix PyBuffer_ToContiguous() for non-contiguous arrays.Stefan Krah2012-07-281-56/+0
* | Issue #2377: Make importlib the implementation of __import__().Brett Cannon2012-04-141-0/+29
* | 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-211-2/+3
* | some more identifier goodnessBenjamin Peterson2012-03-211-27/+8
* | Whitespace.Stefan Krah2012-03-061-1/+1
* | - Issue #10181: New memoryview implementation fixes multiple ownershipStefan Krah2012-02-251-7/+7
* | use the static identifier api for looking up special methodsBenjamin Peterson2012-01-221-8/+8
* | Add a separate NEWS entry for a change to PyObject_CallMethod in the PEP 380 ...Nick Coghlan2012-01-141-2/+0
* | Implement PEP 380 - 'yield from' (closes #11682)Nick Coghlan2012-01-131-2/+0
* | fix weird indentationBenjamin Peterson2011-12-281-1/+1
* | Use the new Unicode APIVictor Stinner2011-11-221-1/+1
* | Rename _Py_identifier to _Py_IDENTIFIER.Martin v. Löwis2011-10-141-3/+3
* | Add API for static strings, primarily good for identifiers.Martin v. Löwis2011-10-091-36/+75
* | Implement PEP 393.Martin v. Löwis2011-09-281-3/+1
* | Replace Py_NotImplemented returns with the macro form Py_RETURN_NOTIMPLEMENTED.Brian Curtin2011-08-111-2/+1
* | Close #10616: mention bytes and bytearray in PyObject_AsCharBuffer() errorVictor Stinner2011-05-301-1/+2
* | Issue #7330, #10833: Replace %100s by %.100s and %200s by %.200sVictor Stinner2011-03-221-1/+1
|/
* code styleBenjamin Peterson2010-11-201-8/+4
* #1574217: only swallow AttributeErrors in isinstance, not everything.R. David Murray2010-11-201-3/+12
* check for NULL tp_as_mapping in PySequence_(Get/Set/Del)Slice #9834Benjamin Peterson2010-09-111-3/+3
* Issue #3101: Helper functions _add_one_to_C() and _add_one_to_F() becomeAntoine Pitrou2010-09-011-9/+9
* Issue #2443: Added a new macro, Py_VA_COPY, which is equivalent to C99Alexander Belopolsky2010-08-111-9/+1
* update error messageBenjamin Peterson2010-06-281-2/+1
* Merged revisions 81712 via svnmerge fromBenjamin Peterson2010-06-051-0/+1
* Merged revisions 81706-81707 via svnmerge fromBenjamin Peterson2010-06-051-27/+15
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-1905/+1905
* * Fix the refcount leak in _PySequence_BytesToCharpArray from r78946.Gregory P. Smith2010-03-151-1/+4
* * Replaces the internals of the subprocess module from fork through exec onGregory P. Smith2010-03-141-0/+60
* Merged revisions 76052,76522,76591,76689,76697,76733 via svnmerge fromBenjamin Peterson2009-12-131-1/+1
* Slightly improve buffer-related error message.Georg Brandl2009-08-041-1/+1
* Merged revisions 72907 via svnmerge fromBenjamin Peterson2009-05-251-2/+10
* Remove unused variables.Georg Brandl2009-05-171-2/+1
* Merged revisions 72690 via svnmerge fromBenjamin Peterson2009-05-161-16/+4
* only need to catch an TypeError hereBenjamin Peterson2009-05-091-3/+2
* Merged revisions 72518 via svnmerge fromBenjamin Peterson2009-05-091-0/+1
* Merged revisions 72508 via svnmerge fromBenjamin Peterson2009-05-091-13/+8
* Merged revisions 71607,71653,71696,71771,71786 via svnmerge fromGeorg Brandl2009-04-271-1/+1
* Merged revisions 69846 via svnmerge fromMark Dickinson2009-02-211-1/+1