| Commit message (Expand) | Author | Age | Files | Lines |
* | Check the type of values returned by __int__, __float__, __long__, | Neil Schemenauer | 2004-07-19 | 1 | -6/+33 |
|
|
* | SF bug #952866: "can't multiply sequence *by* non-int" | Raymond Hettinger | 2004-05-12 | 1 | -1/+1 |
|
|
* | Improve previous checkin to use a slot check instead of equivalent | Raymond Hettinger | 2004-04-05 | 1 | -1/+2 |
|
|
* | Improve accuracy of sequence and mapping checks. | Raymond Hettinger | 2004-04-04 | 1 | -2/+8 |
|
|
* | recursive_isinstance(), recursive_issubclass(): New code here returned | Tim Peters | 2004-03-21 | 1 | -2/+2 |
|
|
* | Limit the nesting depth of a tuple passed as the second argument to | Brett Cannon | 2004-03-20 | 1 | -9/+36 |
|
|
* | Add missing decref | Raymond Hettinger | 2004-03-17 | 1 | -0/+1 |
|
|
* | Eliminate a big block of duplicate code in PySequence_List() by | Raymond Hettinger | 2004-03-11 | 1 | -54/+6 |
|
|
* | SF Patch #871704: Py_SequenceFast can mask errors | Raymond Hettinger | 2004-01-11 | 1 | -3/+11 |
|
|
* | Apply pre-sizing optimization to a broader class of objects. | Raymond Hettinger | 2004-01-04 | 1 | -8/+4 |
|
|
* | Apply tuple/list pre-sizing optimization to a broader class of objects. | Raymond Hettinger | 2004-01-04 | 1 | -1/+1 |
|
|
* | Fix Greg Ward's error message nit: PyObject_SetItem and PySequenceSetItem | Raymond Hettinger | 2003-10-27 | 1 | -1/+1 |
|
|
* | Removed duplicate test from inner loop. | Raymond Hettinger | 2003-03-01 | 1 | -6/+1 |
|
|
* | Make PyNumber_Check() a bit more careful, since all sorts of things | Guido van Rossum | 2003-02-18 | 1 | -1/+3 |
|
|
* | Add missing cast in previous fix. | Guido van Rossum | 2003-02-12 | 1 | -1/+2 |
|
|
* | SF #532767: isinstance(x, X) should work when x is a proxy for an X | Guido van Rossum | 2003-02-12 | 1 | -6/+19 |
|
|
* | Fold long lines. | Guido van Rossum | 2003-02-10 | 1 | -4/+7 |
|
|
* | Merge to trunk from release branch: | Guido van Rossum | 2002-12-31 | 1 | -0/+1 |
|
|
* | Always try nb_* slots before trying sq_concat, sq_inplace_concat, sq_repeat, | Neil Schemenauer | 2002-12-30 | 1 | -50/+128 |
|
|
* | Change issubclass() so that recursive tuples (directly or indirectly | Walter Dörwald | 2002-12-12 | 1 | -4/+4 |
|
|
* | Enhance issubclass() and PyObject_IsSubclass() so that a tuple is | Walter Dörwald | 2002-12-12 | 1 | -28/+42 |
|
|
* | Fix typo in abstract.c which caused __rpow__ to not be invoked. | Raymond Hettinger | 2002-12-07 | 1 | -1/+1 |
|
|
* | Simplify use of NB_BINOP and NB_TERNOP by making them do the pointer | Neil Schemenauer | 2002-11-24 | 1 | -15/+15 |
|
|
* | Remove special handling of str and unicode in PyNumber_InPlaceRemainder. They | Neil Schemenauer | 2002-11-24 | 1 | -9/+2 |
|
|
* | str and unicode objects now have a __mod__ slot so don't special case them in | Neil Schemenauer | 2002-11-18 | 1 | -6/+0 |
|
|
* | Use PyList_CheckExact and PyTuple_CheckExact for checking whether | Michael W. Hudson | 2002-11-05 | 1 | -1/+1 |
|
|
* | Squash a few calls to the hideously expensive PyObject_CallObject(o,a) | Guido van Rossum | 2002-08-16 | 1 | -2/+2 |
|
|
* | Patch #554716: Use __va_copy where available. | Martin v. Löwis | 2002-07-28 | 1 | -0/+4 |
|
|
* | Close SF bug 563740. complex() now finds __complex__() in new style classes. | Raymond Hettinger | 2002-06-06 | 1 | -2/+2 |
|
|
* | Better isinstance error message. | Thomas Heller | 2002-06-05 | 1 | -1/+2 |
|
|
* | abstract_get_bases(): Clarify exactly what the return values and | Barry Warsaw | 2002-04-23 | 1 | -9/+46 |
|
|
* | SF bug 544647. | Guido van Rossum | 2002-04-16 | 1 | -2/+6 |
|
|
* | Whitespace normalization and fold some long lines. | Guido van Rossum | 2002-04-16 | 1 | -20/+19 |
|
|
* | Fix leak of NotImplemented in previous checkin to PyNumber_Add(). | Jeremy Hylton | 2002-03-08 | 1 | -4/+6 |
|
|
* | Fix for SF bug 516727: MyInt(2) + "3" -> NotImplemented | Jeremy Hylton | 2002-03-08 | 1 | -4/+3 |
|
|
* | Revert the last odd change to PyNumber_Long: the problem it was trying | Tim Peters | 2002-03-02 | 1 | -10/+2 |
|
|
* | SF patch 514641 (Naofumi Honda) - Negative ob_size of LongObjects | Guido van Rossum | 2002-03-01 | 1 | -2/+10 |
|
|
* | Implement PyObject_DelItemString. Fixes #498915. | Martin v. Löwis | 2002-01-05 | 1 | -0/+18 |
|
|
* | PyObject_GetItem(), PyObject_SetItem(), PyObject_DelItem(): Fix a few | Guido van Rossum | 2001-11-24 | 1 | -5/+10 |
|
|
* | Add PyObject_CheckReadBuffer(), which returns true if its argument | Jeremy Hylton | 2001-11-09 | 1 | -29/+35 |
|
|
* | PyFunction_Call() did not check the result of PyObject_Repr() for NULL, and | Fred Drake | 2001-11-01 | 1 | -2/+2 |
|
|
* | PyObject_CallFunctionObArgs() ---> PyObject_CallFunctionObjArgs() | Fred Drake | 2001-10-28 | 1 | -5/+5 |
|
|
* | PyObject_CallFunction(), PyObject_CallMethod(): Make sure we do not touch | Fred Drake | 2001-10-27 | 1 | -18/+11 |
|
|
* | Added two new functions to conveniently call functions/methods from C. | Fred Drake | 2001-10-26 | 1 | -0/+76 |
|
|
* | Generalize dictionary() to accept a sequence of 2-sequences. At the | Tim Peters | 2001-10-26 | 1 | -1/+1 |
|
|
* | Make the error message for unsupported operand types cleaner, in | Guido van Rossum | 2001-10-22 | 1 | -7/+27 |
|
|
* | Fix error checking done by abstract_issubclass and abstract_isinstance. | Neil Schemenauer | 2001-10-18 | 1 | -44/+61 |
|
|
* | Implement isinstance(x, (A, B, ...)). Note that we only allow tuples, | Guido van Rossum | 2001-10-07 | 1 | -1/+16 |
|
|
* | binary_op1(), ternary_op(): rearrange the code so that slotw is tested | Guido van Rossum | 2001-10-01 | 1 | -14/+14 |
|
|
* | SF bug [#466173] unpack TypeError unclear | Tim Peters | 2001-09-30 | 1 | -1/+1 |
|
|