| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix comment typo. | Mark Dickinson | 2010-06-05 | 1 | -1/+1 |
|
|
* | Issue #8627: Fix "XXX undetected error" from unchecked PyErr_WarnPy3k return. | Mark Dickinson | 2010-06-05 | 1 | -4/+10 |
|
|
* | Issue #8627: remove out-of-date warning about overriding __cmp__ | Mark Dickinson | 2010-06-05 | 1 | -7/+0 |
|
|
* | fix ref counting | Benjamin Peterson | 2010-06-05 | 1 | -1/+1 |
|
|
* | implement object.__format__ with PyObject_Format | Benjamin Peterson | 2010-06-05 | 1 | -12/+1 |
|
|
* | Untabify C files. Will watch buildbots. | Antoine Pitrou | 2010-05-09 | 1 | -5106/+5106 |
|
|
* | Remove an unneeded assignment. | Brett Cannon | 2010-05-05 | 1 | -2/+2 |
|
|
* | Issue 7994: Make object.__format__ with a non-empty format string a PendingDe... | Eric Smith | 2010-04-02 | 1 | -3/+26 |
|
|
* | remove type_compare, since type_richcompare does the same trick | Benjamin Peterson | 2009-12-16 | 1 | -10/+1 |
|
|
* | fix the ignoring of __cmp__ method on metaclasses #7491 | Benjamin Peterson | 2009-12-13 | 1 | -1/+5 |
|
|
* | properly lookup __instancecheck__ and __subclasscheck__ | Benjamin Peterson | 2009-05-16 | 1 | -17/+4 |
|
|
* | can't handle classic classes here | Benjamin Peterson | 2009-05-09 | 1 | -0/+1 |
|
|
* | add _PyObject_LookupSpecial to handle fetching special method lookup | Benjamin Peterson | 2009-05-08 | 1 | -0/+8 |
|
|
* | fix a segfault when setting __class__ in __del__ #5283 | Benjamin Peterson | 2009-04-25 | 1 | -0/+6 |
|
|
* | Issue #2396: backport the memoryview object. | Antoine Pitrou | 2009-04-02 | 1 | -2/+6 |
|
|
* | Fix a small nit in the error message if bool() falls back on __len__ and it r... | Georg Brandl | 2009-03-15 | 1 | -1/+5 |
|
|
* | fix building the core with --disable-unicode | Benjamin Peterson | 2009-01-25 | 1 | -0/+4 |
|
|
* | #4930: Slightly cleaner (and faster) code in type creation: | Amaury Forgeot d'Arc | 2009-01-17 | 1 | -2/+2 |
|
|
* | #3720: Interpreter crashes when an evil iterator removes its own next function. | Amaury Forgeot d'Arc | 2009-01-12 | 1 | -1/+5 |
|
|
* | when __getattr__ is a descriptor, call it correctly; fixes #4230 | Benjamin Peterson | 2008-11-17 | 1 | -3/+36 |
|
|
* | Issue #2534: speed up isinstance() and issubclass() by 50-70%, so as to | Antoine Pitrou | 2008-08-26 | 1 | -0/+45 |
|
|
* | generate py3k warnings on __getslice__, __delslice__, and __setslice__ | Benjamin Peterson | 2008-08-24 | 1 | -5/+23 |
|
|
* | Issue 2235: Py3k warnings are now emitted for classes that will no longer inh... | Nick Coghlan | 2008-08-11 | 1 | -0/+35 |
|
|
* | Issue 2235: __hash__ is once again inherited by default, but inheritance can ... | Nick Coghlan | 2008-07-15 | 1 | -44/+24 |
|
|
* | Revert 64424, 64438, and 64439. | Raymond Hettinger | 2008-06-24 | 1 | -4/+0 |
|
|
* | Make bin() implementation parallel oct() and hex() so that int/long subclasse... | Raymond Hettinger | 2008-06-20 | 1 | -0/+4 |
|
|
* | This reverts r63675 based on the discussion in this thread: | Gregory P. Smith | 2008-06-09 | 1 | -60/+60 |
|
|
* | Some style nits. Also clarify in the docstrings what __sizeof__ does. | Georg Brandl | 2008-06-01 | 1 | -1/+1 |
|
|
* | Issue #2898: Added sys.getsizeof() to retrieve size of objects in bytes. | Robert Schuppenies | 2008-06-01 | 1 | -0/+16 |
|
|
* | Revert #2990 patch; it's not necessary as Armin showed. | Georg Brandl | 2008-05-29 | 1 | -7/+5 |
|
|
* | #2990: prevent inconsistent state while updating method cache. | Georg Brandl | 2008-05-28 | 1 | -5/+7 |
|
|
* | #2989: add PyType_Modified(). | Georg Brandl | 2008-05-28 | 1 | -10/+9 |
|
|
* | Renamed PyString to PyBytes | Christian Heimes | 2008-05-26 | 1 | -60/+60 |
|
|
* | Revert copy_reg -> copyreg rename. | Georg Brandl | 2008-05-20 | 1 | -3/+3 |
|
|
* | Patch by Quentin Gallet-Gilles: Renaming leftovers for 2.6. | Alexandre Vassalotti | 2008-05-16 | 1 | -1/+1 |
|
|
* | Added module stub for copy_reg renaming in 3.0. | Alexandre Vassalotti | 2008-05-11 | 1 | -22/+22 |
|
|
* | Use PyErr_WarnPy3k throughout | Benjamin Peterson | 2008-04-27 | 1 | -2/+2 |
|
|
* | Merged revisions 61750,61752,61754,61756,61760,61763,61768,61772,61775,61805,... | Christian Heimes | 2008-03-26 | 1 | -0/+2 |
|
|
* | Make Py3k warnings consistent w.r.t. punctuation; also respect the | Georg Brandl | 2008-03-25 | 1 | -1/+2 |
|
|
* | Add py3k warnings for object, type, cell and dict comparisons. This should re... | Steven Bethard | 2008-03-18 | 1 | -1/+43 |
|
|
* | Move abc._Abstract into object by adding a new flag Py_TPFLAGS_IS_ABSTRACT, | Jeffrey Yasskin | 2008-02-28 | 1 | -0/+103 |
|
|
* | Backport of PEP 3101, Advanced String Formatting, from py3k. | Eric Smith | 2008-02-17 | 1 | -0/+46 |
|
|
* | Added clear cache methods to clear the internal type lookup cache for ref lea... | Christian Heimes | 2008-01-27 | 1 | -0/+18 |
|
|
* | Whitespace cleanup | Neal Norwitz | 2008-01-27 | 1 | -5/+5 |
|
|
* | Re-apply patch #1700288 (first applied in r59931, rolled back in r59940) | Amaury Forgeot d'Arc | 2008-01-14 | 1 | -6/+204 |
|
|
* | Back out r59931 - test_ctypes fails with it. | Georg Brandl | 2008-01-13 | 1 | -204/+6 |
|
|
* | Patch #1700288: Method cache optimization, by Armin Rigo, ported to | Georg Brandl | 2008-01-12 | 1 | -6/+204 |
|
|
* | Make Python compile with --disable-unicode. | Georg Brandl | 2008-01-07 | 1 | -0/+2 |
|
|
* | Fix refleak introduced in r59576. | Georg Brandl | 2007-12-20 | 1 | -0/+1 |
|
|
* | Patch #1549 by Thomas Herve. | Guido van Rossum | 2007-12-19 | 1 | -15/+18 |
|
|