| Commit message (Expand) | Author | Age | Files | Lines |
* | #6707 fix a crash with dir() on an uninitialized module | Benjamin Peterson | 2009-08-15 | 1 | -3/+5 |
|
|
* | Uninitialized file type would lead to __exit__ lookup failure when site.py | Antoine Pitrou | 2009-05-31 | 1 | -0/+3 |
|
|
* | handle errors from _PyObject_LookupSpecial when __get__ fails | Benjamin Peterson | 2009-05-25 | 1 | -0/+2 |
|
|
* | this is now a bound method | Benjamin Peterson | 2009-05-08 | 1 | -1/+1 |
|
|
* | add _PyObject_LookupSpecial to handle fetching special method lookup | Benjamin Peterson | 2009-05-08 | 1 | -12/+3 |
|
|
* | make errors consistent | Benjamin Peterson | 2009-04-19 | 1 | -2/+2 |
|
|
* | initialize weakref some weakref types | Benjamin Peterson | 2009-04-19 | 1 | -0/+6 |
|
|
* | many more types to initialize (I had to expose some of them) | Benjamin Peterson | 2009-04-18 | 1 | -1/+43 |
|
|
* | initalize -> initialize | Benjamin Peterson | 2009-04-18 | 1 | -4/+4 |
|
|
* | try to initalize all builtin types with PyType_Ready to avoid problems like #... | Benjamin Peterson | 2009-04-18 | 1 | -8/+68 |
|
|
* | #5615: make it possible to configure --without-threads again. | Georg Brandl | 2009-04-05 | 1 | -0/+6 |
|
|
* | Issue #5341: Fix a variety of spelling errors. | Mark Dickinson | 2009-02-21 | 1 | -1/+1 |
|
|
* | Fix compiler warning (gcc) | Antoine Pitrou | 2009-02-13 | 1 | -1/+1 |
|
|
* | Issue #5186: Reduce hash collisions for objects with no __hash__ method by | Antoine Pitrou | 2009-02-13 | 1 | -15/+7 |
|
|
* | Issue #789290: make sure that hash(2**63) == hash(2.**63) on 64-bit | Mark Dickinson | 2009-02-08 | 1 | -1/+1 |
|
|
* | #3720: Interpreter crashes when an evil iterator removes its own next function. | Amaury Forgeot d'Arc | 2009-01-12 | 1 | -0/+14 |
|
|
* | Issue #4850: Change COUNT_ALLOCS variables to Py_ssize_t. | Martin v. Löwis | 2009-01-07 | 1 | -8/+13 |
|
|
* | Issue #4701: implicitly call PyType_Ready from PyObject_Hash | Nick Coghlan | 2008-12-30 | 1 | -0/+11 |
|
|
* | #3632: the "pyo" macro from gdbinit can now run when the GIL is released. | Amaury Forgeot d'Arc | 2008-12-15 | 1 | -0/+3 |
|
|
* | Issue 2235: __hash__ is once again inherited by default, but inheritance can ... | Nick Coghlan | 2008-07-15 | 1 | -3/+8 |
|
|
* | Issue 2517: Allow unicode messages in Exceptions again by correctly bypassing... | Nick Coghlan | 2008-07-08 | 1 | -9/+31 |
|
|
* | This reverts r63675 based on the discussion in this thread: | Gregory P. Smith | 2008-06-09 | 1 | -29/+29 |
|
|
* | Renamed PyString to PyBytes | Christian Heimes | 2008-05-26 | 1 | -29/+29 |
|
|
* | First step of the C API rename: | Christian Heimes | 2008-05-26 | 1 | -1/+1 |
|
|
* | Use PyErr_WarnPy3k throughout | Benjamin Peterson | 2008-04-27 | 1 | -4/+4 |
|
|
* | Merged revisions 61750,61752,61754,61756,61760,61763,61768,61772,61775,61805,... | Christian Heimes | 2008-03-26 | 1 | -0/+3 |
|
|
* | Make Py3k warnings consistent w.r.t. punctuation; also respect the | Georg Brandl | 2008-03-25 | 1 | -5/+6 |
|
|
* | #2346/#2347: add py3k warning for __methods__ and __members__. Patch by Jack ... | Georg Brandl | 2008-03-21 | 1 | -0/+10 |
|
|
* | Add py3k warnings for object, type, cell and dict comparisons. This should re... | Steven Bethard | 2008-03-18 | 1 | -1/+11 |
|
|
* | Fix test67.py from issue #1303614. | Guido van Rossum | 2008-01-24 | 1 | -0/+5 |
|
|
* | Re-apply patch #1700288 (first applied in r59931, rolled back in r59940) | Amaury Forgeot d'Arc | 2008-01-14 | 1 | -0/+4 |
|
|
* | Back out r59931 - test_ctypes fails with it. | Georg Brandl | 2008-01-13 | 1 | -4/+0 |
|
|
* | Patch #1700288: Method cache optimization, by Armin Rigo, ported to | Georg Brandl | 2008-01-12 | 1 | -0/+4 |
|
|
* | #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC... | Christian Heimes | 2007-12-19 | 1 | -34/+34 |
|
|
* | Backport of _abccoll.py by Benjamin Arangueren, issue 1383. | Guido van Rossum | 2007-11-22 | 1 | -1/+1 |
|
|
* | tuple.__repr__ did not consider a reference loop as it is not possible from | Brett Cannon | 2007-09-30 | 1 | -0/+5 |
|
|
* | Add a bunch of GIL release/acquire points in tp_print implementations and for | Brett Cannon | 2007-09-17 | 1 | -0/+4 |
|
|
* | PEP 3123: Provide forward compatibility with Python 3.0, while keeping | Martin v. Löwis | 2007-07-21 | 1 | -40/+40 |
|
|
* | Add -3 option to the interpreter to warn about features that are | Neal Norwitz | 2007-05-23 | 1 | -0/+1 |
|
|
* | Remove warning: funcion declaration isn't a prototype | Jeremy Hylton | 2007-03-16 | 1 | -2/+1 |
|
|
* | Typo and grammar fixes. | Georg Brandl | 2007-03-13 | 1 | -3/+3 |
|
|
* | Backport from Py3k branch: | Georg Brandl | 2007-03-12 | 1 | -96/+169 |
|
|
* | Slightly revised version of patch #1538956: | Marc-André Lemburg | 2006-08-14 | 1 | -17/+0 |
|
|
* | Patch #1507676: improve exception messages in abstract.c, object.c and typeob... | Georg Brandl | 2006-06-18 | 1 | -12/+18 |
|
|
* | Correct some value converting strangenesses. | Georg Brandl | 2006-05-29 | 1 | -1/+1 |
|
|
* | Comment typo fix | Andrew M. Kuchling | 2006-04-18 | 1 | -1/+1 |
|
|
* | Remove types from type_list if they have no objects | Martin v. Löwis | 2006-04-18 | 1 | -6/+33 |
|
|
* | spread the extern "C" { } magic pixie dust around. Python itself builds now | Anthony Baxter | 2006-04-13 | 1 | -0/+9 |
|
|
* | Ignore the references to the dummy objects used as deleted keys | Armin Rigo | 2006-04-12 | 1 | -1/+18 |
|
|
* | _Py_PrintReferenceAddresses,_Py_PrintReferences: | Tim Peters | 2006-04-11 | 1 | -7/+3 |
|
|