| Commit message (Expand) | Author | Age | Files | Lines |
* | handle errors from _PyObject_LookupSpecial when __get__ fails | Benjamin Peterson | 2009-05-25 | 1 | -2/+11 |
|
|
* | completely ignore old-style stuff for type checking overloading | Benjamin Peterson | 2009-05-16 | 1 | -52/+30 |
|
|
* | deal with old-style classes in issubclass and isinstance | Benjamin Peterson | 2009-05-16 | 1 | -2/+2 |
|
|
* | properly lookup __instancecheck__ and __subclasscheck__ | Benjamin Peterson | 2009-05-16 | 1 | -13/+25 |
|
|
* | clear error state properly | Benjamin Peterson | 2009-05-09 | 1 | -0/+1 |
|
|
* | ignore AttributeErrors for classic classes | Benjamin Peterson | 2009-05-09 | 1 | -1/+2 |
|
|
* | ignore classic classes | Benjamin Peterson | 2009-05-09 | 1 | -0/+2 |
|
|
* | convert some more special methods to use _PyObject_LookupSpecial | Benjamin Peterson | 2009-05-09 | 1 | -13/+8 |
|
|
* | "not subscriptable" should be a bit more understandable than "unsubscriptable". | Georg Brandl | 2009-04-18 | 1 | -1/+1 |
|
|
* | Issue #2396: backport the memoryview object. | Antoine Pitrou | 2009-04-02 | 1 | -2/+2 |
|
|
* | Issue #5341: Fix a variety of spelling errors. | Mark Dickinson | 2009-02-21 | 1 | -1/+1 |
|
|
* | Remove redundant assignment in _PyObject_LengthHint | Mark Dickinson | 2009-02-08 | 1 | -1/+1 |
|
|
* | Validate that __length_hint__ returns a usable result. | Raymond Hettinger | 2009-02-03 | 1 | -1/+1 |
|
|
* | Issue 1242657: list(obj) can swallow KeyboardInterrupt. | Raymond Hettinger | 2009-02-02 | 1 | -14/+19 |
|
|
* | Fixed compile error on windows. | Hirokazu Yamamoto | 2009-01-25 | 1 | -1/+1 |
|
|
* | fix building the core with --disable-unicode | Benjamin Peterson | 2009-01-25 | 1 | -0/+14 |
|
|
* | #3720: Interpreter crashes when an evil iterator removes its own next function. | Amaury Forgeot d'Arc | 2009-01-12 | 1 | -1/+0 |
|
|
* | Issue #2534: speed up isinstance() and issubclass() by 50-70%, so as to | Antoine Pitrou | 2008-08-26 | 1 | -80/+91 |
|
|
* | Fix memory leak: Always DECREF obj in PyBuffer_Release. | Martin v. Löwis | 2008-08-14 | 1 | -5/+3 |
|
|
* | Make obj an owned reference in Py_buffer; this checkin | Martin v. Löwis | 2008-08-14 | 1 | -1/+4 |
|
|
* | Issue #3139: Make buffer-interface thread-safe wrt. PyArg_ParseTuple, | Martin v. Löwis | 2008-08-12 | 1 | -20/+22 |
|
|
* | Correct grammar. | Skip Montanaro | 2008-07-07 | 1 | -1/+1 |
|
|
* | This reverts r63675 based on the discussion in this thread: | Gregory P. Smith | 2008-06-09 | 1 | -22/+22 |
|
|
* | Remove locking part of new buffer protocol. | Travis E. Oliphant | 2008-06-06 | 1 | -6/+0 |
|
|
* | Renamed PyString to PyBytes | Christian Heimes | 2008-05-26 | 1 | -22/+22 |
|
|
* | Prevent namespace pollution, add static for internal functions | Neal Norwitz | 2008-04-15 | 1 | -2/+2 |
|
|
* | Remove unnecessary traceback save/restore pair. | Raymond Hettinger | 2008-03-19 | 1 | -4/+2 |
|
|
* | Fix compiler warning. | Raymond Hettinger | 2008-03-19 | 1 | -1/+1 |
|
|
* | Speed-up isinstance() for one easy case. | Raymond Hettinger | 2008-03-18 | 1 | -0/+5 |
|
|
* | Finish backporting new buffer API to Python 2.6. Left to do: memoryview obje... | Travis E. Oliphant | 2008-03-18 | 1 | -0/+369 |
|
|
* | Backport of PEP 3101, Advanced String Formatting, from py3k. | Eric Smith | 2008-02-17 | 1 | -0/+132 |
|
|
* | In PyNumber_ToBase, changed from an assert to returning an error when PyObjec... | Eric Smith | 2008-02-15 | 1 | -1/+5 |
|
|
* | Use a static and interned string for __subclasscheck__ and __instancecheck__ ... | Christian Heimes | 2008-02-14 | 1 | -2/+16 |
|
|
* | Added PyNumber_ToBase and supporting routines _PyInt_Format and | Eric Smith | 2008-02-10 | 1 | -0/+19 |
|
|
* | Make int() and long() fall back to __trunc__(). See issue 2002. | Jeffrey Yasskin | 2008-02-04 | 1 | -0/+94 |
|
|
* | static PyObject* variables should use PyString_InternFromString() instead of ... | Christian Heimes | 2008-01-28 | 1 | -2/+2 |
|
|
* | Fix Issue 1045. | Raymond Hettinger | 2007-12-06 | 1 | -30/+38 |
|
|
* | merge -r59315:59316 from py3k: Fix issue #1553: An errornous __length_hint__ ... | Christian Heimes | 2007-12-05 | 1 | -2/+3 |
|
|
* | Properly indent two lines. (Spotted because it caused merge conflicts in the | Thomas Wouters | 2007-09-18 | 1 | -2/+2 |
|
|
* | Patch # 1026 by Benjamin Aranguren (with Alex Martelli): | Guido van Rossum | 2007-09-10 | 1 | -0/+40 |
|
|
* | Fix a crasher where Python code managed to infinitely recurse in C code without | Brett Cannon | 2007-09-07 | 1 | -1/+5 |
|
|
* | Silence compiler warning | Raymond Hettinger | 2007-02-07 | 1 | -1/+1 |
|
|
* | Bug #1575169: operator.isSequenceType() now returns False for subclasses of d... | Raymond Hettinger | 2007-02-07 | 1 | -0/+2 |
|
|
* | Forward-port of r52136,52138: a review of overflow-detecting code. | Armin Rigo | 2006-10-04 | 1 | -8/+6 |
|
|
* | Subclasses of int/long are allowed to define an __index__. | Neal Norwitz | 2006-08-15 | 1 | -4/+2 |
|
|
* | Patch #1538606, Patch to fix __index__() clipping. | Neal Norwitz | 2006-08-12 | 1 | -21/+84 |
|
|
* | Remove "non-mapping" and "non-sequence" from TypeErrors raised by | Georg Brandl | 2006-08-08 | 1 | -2/+2 |
|
|
* | Fix for an obscure bug introduced by revs 46806 and 46808, with a test. | Armin Rigo | 2006-06-21 | 1 | -11/+1 |
|
|
* | Patch #1507676: improve exception messages in abstract.c, object.c and typeob... | Georg Brandl | 2006-06-18 | 1 | -39/+43 |
|
|
* | Fix bug introduced in rev. 46806 by not having variable declaration at the to... | Brett Cannon | 2006-06-09 | 1 | -2/+4 |
|
|