| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
|
|
* | Remove unnecessary casts in type object initializers. | Georg Brandl | 2006-03-30 | 1 | -4/+4 |
|
|
* | Fixed bug #1459029 - unicode reprs were double-escaped. | Anthony Baxter | 2006-03-30 | 1 | -1/+1 |
|
|
* | Heh -- used the right format for a refcount, but forgot | Tim Peters | 2006-03-23 | 1 | -1/+1 |
|
|
* | _Py_NegativeRefcount(): print the full value of ob_refcnt. | Tim Peters | 2006-03-23 | 1 | -3/+2 |
|
|
* | Fix and test (manually w/xx module) passing NULLs to PyObject_Str() and | Neal Norwitz | 2006-03-14 | 1 | -5/+7 |
|
|
* | Fix bug found by Coverity: don't allow NULL argument to PyUnicode_CheckExact | Georg Brandl | 2006-03-13 | 1 | -2/+2 |
|
|
* | Change int to Py_ssize_t in several places. | Martin v. Löwis | 2006-03-07 | 1 | -2/+2 |
|
|
* | Oops, forgot to include this in the last checkin. | Neal Norwitz | 2006-03-04 | 1 | -1/+1 |
|
|
* | Use %ld and casts to long for refcount printing, in absense of a universally | Thomas Wouters | 2006-03-01 | 1 | -8/+18 |
|
|
* | Revert backwards-incompatible const changes. | Martin v. Löwis | 2006-02-27 | 1 | -2/+2 |
|
|
* | Merge ssize_t branch. | Martin v. Löwis | 2006-02-15 | 1 | -11/+12 |
|
|
* | Add const to several API functions that take char *. | Jeremy Hylton | 2005-12-10 | 1 | -5/+5 |
|
|
* | Change the %s format specifier for str objects so that it returns a | Neil Schemenauer | 2005-08-12 | 1 | -9/+29 |
|
|
* | Make subclasses of int, long, complex, float, and unicode perform type | Brett Cannon | 2005-04-26 | 1 | -25/+24 |
|
|
* | Dima Dorfman's patch for coercion/comparison of C types (patch #995939), with | Armin Rigo | 2004-12-23 | 1 | -16/+11 |
|
|
* | Remove 'extern' declaration for _Py_SwappedOp. | Brett Cannon | 2004-09-25 | 1 | -1/+1 |
|
|
* | A static swapped_op[] array was defined in 3 different C files, & I think | Tim Peters | 2004-09-23 | 1 | -4/+4 |
|
|
* | Move a comment back to its rightful location. | Michael W. Hudson | 2004-09-14 | 1 | -2/+2 |
|
|
* | SF bug #1004669: Type returned from .keys() is not checked | Raymond Hettinger | 2004-08-07 | 1 | -0/+5 |
|
|
* | Remove unused macros in .c files | Neal Norwitz | 2004-07-08 | 1 | -2/+0 |
|
|
* | Make weak references subclassable: | Fred Drake | 2004-07-02 | 1 | -0/+3 |
|
|
* | SF Bug #215126: Over restricted type checking on eval() function | Raymond Hettinger | 2004-07-02 | 1 | -1/+1 |
|
|
* | Two new public API functions, Py_IncRef and Py_DecRef. Useful for | Thomas Heller | 2004-04-22 | 1 | -0/+12 |
|
|
* | Fix typo in comment. | Raymond Hettinger | 2004-03-21 | 1 | -1/+1 |
|
|
* | Add identity shortcut to PyObject_RichCompareBool. | Raymond Hettinger | 2004-03-21 | 1 | -1/+11 |
|
|