| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
|
|
* | The changes to ternary_op could cause a core dump. Fix this, and | Guido van Rossum | 2001-09-29 | 1 | -55/+44 |
|
|
* | It's a fact: for binary operators, *under certain circumstances*, | Guido van Rossum | 2001-09-28 | 1 | -28/+48 |
|
|
* | PyObject_CallObject(): this may as well call PyEval_CallObject() | Guido van Rossum | 2001-09-14 | 1 | -16/+1 |
|
|
* | Fix tortured comment -- I must be on drugs today. | Tim Peters | 2001-09-10 | 1 | -2/+2 |
|
|
* | More on SF bug [#460020] bug or feature: unicode() and subclasses. | Tim Peters | 2001-09-10 | 1 | -1/+5 |
|
|
* | More for SF bug [#460020] bug or feature: unicode() and subclasses | Tim Peters | 2001-09-10 | 1 | -1/+5 |
|
|
* | SF bug #460020: bug or feature: unicode() and subclasses. | Tim Peters | 2001-09-10 | 1 | -2/+9 |
|
|
* | Generalize operator.indexOf (PySequence_Index) to work with any | Tim Peters | 2001-09-08 | 1 | -72/+62 |
|
|
* | PySequence_Check(), PyMapping_Check(): only return true if the | Guido van Rossum | 2001-09-07 | 1 | -2/+4 |
|
|
* | Patch #445762: Support --disable-unicode | Martin v. Löwis | 2001-08-17 | 1 | -0/+8 |
|
|
* | Implement PEP 238 in its (almost) full glory. | Guido van Rossum | 2001-08-08 | 1 | -0/+30 |
|
|
* | Merge of descr-branch back into trunk. | Tim Peters | 2001-08-02 | 1 | -1/+19 |
|
|
* | Cruft cleanup: Removed the unused last_is_sticky argument from the internal | Tim Peters | 2001-05-28 | 1 | -2/+2 |
|
|
* | Reimplement PySequence_Contains() and instance_contains(), so they work | Tim Peters | 2001-05-05 | 1 | -21/+20 |
|
|
* | Generalize PySequence_Count() (operator.countOf) to work with iterators. | Tim Peters | 2001-05-05 | 1 | -13/+31 |
|
|
* | Make 'x in y' and 'x not in y' (PySequence_Contains) play nice w/ iterators. | Tim Peters | 2001-05-05 | 1 | -29/+34 |
|
|
* | Fix a tiny and unlikely memory leak. Was there before too, and actually | Tim Peters | 2001-05-05 | 1 | -1/+3 |
|
|
* | Generalize tuple() to work nicely with iterators. | Tim Peters | 2001-05-05 | 1 | -40/+47 |
|
|
* | Make PyIter_Next() a little smarter (wrt its knowledge of iterator | Tim Peters | 2001-05-05 | 1 | -11/+16 |
|
|
* | Plug a memory leak in list(), when appending to the result list. | Tim Peters | 2001-05-02 | 1 | -5/+9 |
|
|
* | Generalize list(seq) to work with iterators. This also generalizes list() | Tim Peters | 2001-05-01 | 1 | -31/+57 |
|
|
* | Mondo changes to the iterator stuff, without changing how Python code | Guido van Rossum | 2001-04-23 | 1 | -3/+25 |
|
|
* | Iterators phase 1. This comprises: | Guido van Rossum | 2001-04-20 | 1 | -0/+17 |
|
|
* | Move the code implementing isinstance() and issubclass() to new C | Guido van Rossum | 2001-03-21 | 1 | -0/+112 |
|
|
* | Rich comparisons fall-out: | Guido van Rossum | 2001-01-17 | 1 | -4/+4 |
|
|
* | Massive changes as per PEP 208. Read it for details. | Neil Schemenauer | 2001-01-04 | 1 | -728/+318 |
|
|