| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
|
|
* | Removed two unneeded lines from PyObject_Compare(). | Brett Cannon | 2004-01-27 | 1 | -2/+0 |
|
|
* | Getting rid of all the code inside #ifdef macintosh too. | Jack Jansen | 2003-11-20 | 1 | -4/+0 |
|
|
* | Getting rid of support for the ancient Apple MPW compiler. | Jack Jansen | 2003-11-19 | 1 | -8/+0 |
|
|
* | Deleting cyclic object comparison. | Armin Rigo | 2003-10-28 | 1 | -180/+8 |
|
|
* | Fix for | Michael W. Hudson | 2003-08-15 | 1 | -1/+6 |
|
|
* | _Py_PrintReferenceAddresses(): also print the type name. In real use | Tim Peters | 2003-04-18 | 1 | -1/+2 |
|
|
* | _Py_PrintReferences(): Changed to print object address at start of each | Tim Peters | 2003-04-17 | 1 | -1/+16 |
|
|
* | - pythunrun.c, Py_Finalize(): move the call to _Py_PrintReferences() | Guido van Rossum | 2003-04-15 | 1 | -1/+1 |
|
|
* | Typo in comment. | Tim Peters | 2003-03-23 | 1 | -1/+1 |
|
|
* | Improved new Py_TRACE_REFS gimmicks. | Tim Peters | 2003-03-23 | 1 | -14/+36 |
|
|
* | Refactored some of the Py_TRACE_REFS code. New private API function | Tim Peters | 2003-03-23 | 1 | -10/+14 |
|
|
* | Oops! Used a wrong preprocessor symbol. | Tim Peters | 2003-03-23 | 1 | -1/+1 |
|
|
* | When Py_TRACE_REFS is defined, a list of all live objects is maintained in | Tim Peters | 2003-03-23 | 1 | -2/+15 |
|
|
* | Renamed PyObject_GenericGetIter to PyObject_SelfIter | Raymond Hettinger | 2003-03-17 | 1 | -1/+1 |
|
|
* | Created PyObject_GenericGetIter(). | Raymond Hettinger | 2003-03-17 | 1 | -0/+7 |
|
|
* | PyObject_Generic{Get,Set}Attr: | Guido van Rossum | 2003-02-19 | 1 | -2/+4 |
|
|
* | default_3way_compare(): use PyNumber_Check(), rather than testing for | Guido van Rossum | 2003-02-18 | 1 | -3/+3 |
|
|