- 271a868 Subclasses of int/long are allowed to define an __index__. by Neal Norwitz · 18 years ago
- 8a87f5d Patch #1538606, Patch to fix __index__() clipping. by Neal Norwitz · 18 years ago
- b0061c8 Remove "non-mapping" and "non-sequence" from TypeErrors raised by by Georg Brandl · 18 years ago
- 53c1692f Fix for an obscure bug introduced by revs 46806 and 46808, with a test. by Armin Rigo · 18 years ago
- ccff785 Patch #1507676: improve exception messages in abstract.c, object.c and typeobject.c. by Georg Brandl · 18 years ago
- 6946ea0 Fix bug introduced in rev. 46806 by not having variable declaration at the top of a block. by Brett Cannon · 18 years ago
- 22565aa An object with __call__ as an attribute, when called, will have that attribute checked for __call__ itself, and will continue to look until it finds an object without the attribute. This can lead to an infinite recursion. by Brett Cannon · 18 years ago
- ea229bd Fix coding style guide bug. by Brett Cannon · 18 years ago
- 54e964d C++ compilation cleanup: Migrate declaration of by Skip Montanaro · 19 years ago
- 5cb6936 Make Py_BuildValue, PyObject_CallFunction and by Martin v. Löwis · 19 years ago
- 314861c Minor bugs in the __index__ code (PEP 357), with tests. by Armin Rigo · 19 years ago
- badc086 Stop duplicating code and handle slice indices consistently and correctly by Neal Norwitz · 19 years ago
- 29892cc Update function name to reflect params and stop casting to long to avoid losing data by Neal Norwitz · 19 years ago
- 38fff8c Checking in the code for PEP 357. by Guido van Rossum · 19 years ago
- 1fc4b77 Change some sequnce APIs to use Py_ssize_t. by Neal Norwitz · 19 years ago
- 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 19 years ago
- eb079f1 Use Py_ssize_t for counts and sizes. Convert Py_ssize_t using PyInt_FromSsize_t by Martin v. Löwis · 19 years ago
- 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
- f5b3e36 Renamed _length_cue() to __length_hint__(). See: by Armin Rigo · 19 years ago
- 0c6e2f1 Remove some shadowed variables by Neal Norwitz · 19 years ago
- fd163f9 SF patch #1390657: by Armin Rigo · 19 years ago
- 6b27cda Convert iterator __len__() methods to a private API. by Raymond Hettinger · 19 years ago
- a710b33 SF bug #1242657: list(obj) can swallow KeyboardInterrupt by Raymond Hettinger · 19 years ago
- 0edc7a0 Fix: by Michael W. Hudson · 19 years ago
- c3647ac Make subclasses of int, long, complex, float, and unicode perform type by Brett Cannon · 20 years ago
- 193814c Small boost to PySequence_Fast(). Lists build faster than tuples for by Raymond Hettinger · 20 years ago
- e6bdb37 Add missing decref. by Raymond Hettinger · 20 years ago
- 4d01259 SF bug #1085744: Performance issues with PySequence_Tuple() by Raymond Hettinger · 20 years ago
- 1be1a79 SF bug #1030557: PyMapping_Check crashes when argument is NULL by Raymond Hettinger · 20 years ago
- 3a313e3 Check the type of values returned by __int__, __float__, __long__, by Neil Schemenauer · 20 years ago
- 10c6606 SF bug #952866: "can't multiply sequence *by* non-int" by Raymond Hettinger · 20 years ago
- ed9192e Improve previous checkin to use a slot check instead of equivalent by Raymond Hettinger · 21 years ago
- e2eda60 Improve accuracy of sequence and mapping checks. by Raymond Hettinger · 21 years ago
- 5f112eb recursive_isinstance(), recursive_issubclass(): New code here returned by Tim Peters · 21 years ago
- 4f65331 Limit the nesting depth of a tuple passed as the second argument to by Brett Cannon · 21 years ago
- 969d8c0 Add missing decref by Raymond Hettinger · 21 years ago
- 8ca92ae Eliminate a big block of duplicate code in PySequence_List() by by Raymond Hettinger · 21 years ago
- 2fb7029 SF Patch #871704: Py_SequenceFast can mask errors by Raymond Hettinger · 21 years ago
- b86269d Apply pre-sizing optimization to a broader class of objects. by Raymond Hettinger · 21 years ago
- 7832cd6 Apply tuple/list pre-sizing optimization to a broader class of objects. by Raymond Hettinger · 21 years ago
- 98779e0 Fix Greg Ward's error message nit: PyObject_SetItem and PySequenceSetItem by Raymond Hettinger · 21 years ago
- 8049dde Removed duplicate test from inner loop. by Raymond Hettinger · 22 years ago
- 6921eca Make PyNumber_Check() a bit more careful, since all sorts of things by Guido van Rossum · 22 years ago
- e5b130b Add missing cast in previous fix. by Guido van Rossum · 22 years ago
- 03bc7d3 SF #532767: isinstance(x, X) should work when x is a proxy for an X by Guido van Rossum · 22 years ago
- f6c9ba8 Fold long lines. by Guido van Rossum · 22 years ago
- a3a243e Merge to trunk from release branch: by Guido van Rossum · 22 years ago
- d4b0fea Always try nb_* slots before trying sq_concat, sq_inplace_concat, sq_repeat, by Neil Schemenauer · 22 years ago
- 7e5c6a0 Change issubclass() so that recursive tuples (directly or indirectly by Walter Dörwald · 22 years ago
- d9a6ad3 Enhance issubclass() and PyObject_IsSubclass() so that a tuple is by Walter Dörwald · 22 years ago
- c2e095f Fix typo in abstract.c which caused __rpow__ to not be invoked. by Raymond Hettinger · 22 years ago
- b808c5c Simplify use of NB_BINOP and NB_TERNOP by making them do the pointer by Neil Schemenauer · 22 years ago
- d46fbc3 Remove special handling of str and unicode in PyNumber_InPlaceRemainder. They by Neil Schemenauer · 22 years ago
- 26db587 str and unicode objects now have a __mod__ slot so don't special case them in by Neil Schemenauer · 22 years ago
- 2801fe1 Use PyList_CheckExact and PyTuple_CheckExact for checking whether by Michael W. Hudson · 22 years ago
- 84b2bed Squash a few calls to the hideously expensive PyObject_CallObject(o,a) by Guido van Rossum · 22 years ago
- 75d2d94 Patch #554716: Use __va_copy where available. by Martin v. Löwis · 22 years ago
- 478d47a Close SF bug 563740. complex() now finds __complex__() in new style classes. by Raymond Hettinger · 22 years ago
- aee2d5f Better isinstance error message. by Thomas Heller · 22 years ago
- f16951c abstract_get_bases(): Clarify exactly what the return values and by Barry Warsaw · 23 years ago
- e8fc640 SF bug 544647. by Guido van Rossum · 23 years ago
- 7766091 Whitespace normalization and fold some long lines. by Guido van Rossum · 23 years ago
- 0522d98 Fix leak of NotImplemented in previous checkin to PyNumber_Add(). by Jeremy Hylton · 23 years ago
- 6ae6a43 Fix for SF bug 516727: MyInt(2) + "3" -> NotImplemented by Jeremy Hylton · 23 years ago
- db30ac4 Revert the last odd change to PyNumber_Long: the problem it was trying by Tim Peters · 23 years ago
- 2eb0b87 SF patch 514641 (Naofumi Honda) - Negative ob_size of LongObjects by Guido van Rossum · 23 years ago
- b0d71d0 Implement PyObject_DelItemString. Fixes #498915. by Martin v. Löwis · 23 years ago
- 64585f6 PyObject_GetItem(), PyObject_SetItem(), PyObject_DelItem(): Fix a few by Guido van Rossum · 23 years ago
- 89c3a22 Add PyObject_CheckReadBuffer(), which returns true if its argument by Jeremy Hylton · 23 years ago
- 573395a PyFunction_Call() did not check the result of PyObject_Repr() for NULL, and by Fred Drake · 23 years ago
- b0c079e PyObject_CallFunctionObArgs() ---> PyObject_CallFunctionObjArgs() by Fred Drake · 23 years ago
- b92cf06 PyObject_CallFunction(), PyObject_CallMethod(): Make sure we do not touch by Fred Drake · 23 years ago
- b421b8c Added two new functions to conveniently call functions/methods from C. by Fred Drake · 23 years ago
- 1fc240e Generalize dictionary() to accept a sequence of 2-sequences. At the by Tim Peters · 23 years ago
- 5c66a26 Make the error message for unsupported operand types cleaner, in by Guido van Rossum · 23 years ago
- 6b47129 Fix error checking done by abstract_issubclass and abstract_isinstance. by Neil Schemenauer · 23 years ago
- 03290ec Implement isinstance(x, (A, B, ...)). Note that we only allow tuples, by Guido van Rossum · 23 years ago
- 89c4264 binary_op1(), ternary_op(): rearrange the code so that slotw is tested by Guido van Rossum · 23 years ago
- 8b13b3e SF bug [#466173] unpack TypeError unclear by Tim Peters · 23 years ago
- 84675ac The changes to ternary_op could cause a core dump. Fix this, and by Guido van Rossum · 23 years ago
- 4bb1e36 It's a fact: for binary operators, *under certain circumstances*, by Guido van Rossum · 23 years ago
- 5560b74 PyObject_CallObject(): this may as well call PyEval_CallObject() by Guido van Rossum · 23 years ago
- 8ff70a9 Fix tortured comment -- I must be on drugs today. by Tim Peters · 23 years ago
- 4c3a0a3 More on SF bug [#460020] bug or feature: unicode() and subclasses. by Tim Peters · 23 years ago
- 7a50f25 More for SF bug [#460020] bug or feature: unicode() and subclasses by Tim Peters · 23 years ago
- 64b5ce3 SF bug #460020: bug or feature: unicode() and subclasses. by Tim Peters · 23 years ago
- 16a77ad Generalize operator.indexOf (PySequence_Index) to work with any by Tim Peters · 23 years ago
- 8700b42 PySequence_Check(), PyMapping_Check(): only return true if the by Guido van Rossum · 23 years ago
- 339d0f7 Patch #445762: Support --disable-unicode by Martin v. Löwis · 23 years ago
- 4668b00 Implement PEP 238 in its (almost) full glory. by Guido van Rossum · 23 years ago
- 6d6c1a3 Merge of descr-branch back into trunk. by Tim Peters · 23 years ago
- 4324aa3 Cruft cleanup: Removed the unused last_is_sticky argument from the internal by Tim Peters · 23 years ago
- cb8d368 Reimplement PySequence_Contains() and instance_contains(), so they work by Tim Peters · 24 years ago
- 75f8e35 Generalize PySequence_Count() (operator.countOf) to work with iterators. by Tim Peters · 24 years ago
- de9725f Make 'x in y' and 'x not in y' (PySequence_Contains) play nice w/ iterators. by Tim Peters · 24 years ago
- 12d0a6c Fix a tiny and unlikely memory leak. Was there before too, and actually by Tim Peters · 24 years ago
- 6912d4d Generalize tuple() to work nicely with iterators. by Tim Peters · 24 years ago
- f4848da Make PyIter_Next() a little smarter (wrt its knowledge of iterator by Tim Peters · 24 years ago
- 6ad22c4 Plug a memory leak in list(), when appending to the result list. by Tim Peters · 24 years ago
- f553f89 Generalize list(seq) to work with iterators. This also generalizes list() by Tim Peters · 24 years ago