summaryrefslogtreecommitdiffstats
path: root/Objects/object.c
Commit message (Expand)AuthorAgeFilesLines
* Patch #1507676: improve exception messages in abstract.c, object.c and typeob...Georg Brandl2006-06-181-12/+18
* Correct some value converting strangenesses.Georg Brandl2006-05-291-1/+1
* Comment typo fixAndrew M. Kuchling2006-04-181-1/+1
* Remove types from type_list if they have no objectsMartin v. Löwis2006-04-181-6/+33
* spread the extern "C" { } magic pixie dust around. Python itself builds nowAnthony Baxter2006-04-131-0/+9
* Ignore the references to the dummy objects used as deleted keysArmin Rigo2006-04-121-1/+18
* _Py_PrintReferenceAddresses,_Py_PrintReferences:Tim Peters2006-04-111-7/+3
* Remove unnecessary casts in type object initializers.Georg Brandl2006-03-301-4/+4
* Fixed bug #1459029 - unicode reprs were double-escaped.Anthony Baxter2006-03-301-1/+1
* Heh -- used the right format for a refcount, but forgotTim Peters2006-03-231-1/+1
* _Py_NegativeRefcount(): print the full value of ob_refcnt.Tim Peters2006-03-231-3/+2
* Fix and test (manually w/xx module) passing NULLs to PyObject_Str() andNeal Norwitz2006-03-141-5/+7
* Fix bug found by Coverity: don't allow NULL argument to PyUnicode_CheckExactGeorg Brandl2006-03-131-2/+2
* Change int to Py_ssize_t in several places.Martin v. Löwis2006-03-071-2/+2
* Oops, forgot to include this in the last checkin.Neal Norwitz2006-03-041-1/+1
* Use %ld and casts to long for refcount printing, in absense of a universallyThomas Wouters2006-03-011-8/+18
* Revert backwards-incompatible const changes.Martin v. Löwis2006-02-271-2/+2
* Merge ssize_t branch.Martin v. Löwis2006-02-151-11/+12
* Add const to several API functions that take char *.Jeremy Hylton2005-12-101-5/+5
* Change the %s format specifier for str objects so that it returns aNeil Schemenauer2005-08-121-9/+29
* Make subclasses of int, long, complex, float, and unicode perform typeBrett Cannon2005-04-261-25/+24
* Dima Dorfman's patch for coercion/comparison of C types (patch #995939), withArmin Rigo2004-12-231-16/+11
* Remove 'extern' declaration for _Py_SwappedOp.Brett Cannon2004-09-251-1/+1
* A static swapped_op[] array was defined in 3 different C files, & I thinkTim Peters2004-09-231-4/+4
* Move a comment back to its rightful location.Michael W. Hudson2004-09-141-2/+2
* SF bug #1004669: Type returned from .keys() is not checkedRaymond Hettinger2004-08-071-0/+5
* Remove unused macros in .c filesNeal Norwitz2004-07-081-2/+0
* Make weak references subclassable:Fred Drake2004-07-021-0/+3
* SF Bug #215126: Over restricted type checking on eval() functionRaymond Hettinger2004-07-021-1/+1
* Two new public API functions, Py_IncRef and Py_DecRef. Useful forThomas Heller2004-04-221-0/+12
* Fix typo in comment.Raymond Hettinger2004-03-211-1/+1
* Add identity shortcut to PyObject_RichCompareBool.Raymond Hettinger2004-03-211-1/+11
* Removed two unneeded lines from PyObject_Compare().Brett Cannon2004-01-271-2/+0
* Getting rid of all the code inside #ifdef macintosh too.Jack Jansen2003-11-201-4/+0
* Getting rid of support for the ancient Apple MPW compiler.Jack Jansen2003-11-191-8/+0
* Deleting cyclic object comparison.Armin Rigo2003-10-281-180/+8
* Fix forMichael W. Hudson2003-08-151-1/+6
* _Py_PrintReferenceAddresses(): also print the type name. In real useTim Peters2003-04-181-1/+2
* _Py_PrintReferences(): Changed to print object address at start of eachTim Peters2003-04-171-1/+16
* - pythunrun.c, Py_Finalize(): move the call to _Py_PrintReferences()Guido van Rossum2003-04-151-1/+1
* Typo in comment.Tim Peters2003-03-231-1/+1
* Improved new Py_TRACE_REFS gimmicks.Tim Peters2003-03-231-14/+36
* Refactored some of the Py_TRACE_REFS code. New private API functionTim Peters2003-03-231-10/+14
* Oops! Used a wrong preprocessor symbol.Tim Peters2003-03-231-1/+1
* When Py_TRACE_REFS is defined, a list of all live objects is maintained inTim Peters2003-03-231-2/+15
* Renamed PyObject_GenericGetIter to PyObject_SelfIterRaymond Hettinger2003-03-171-1/+1
* Created PyObject_GenericGetIter().Raymond Hettinger2003-03-171-0/+7
* PyObject_Generic{Get,Set}Attr:Guido van Rossum2003-02-191-2/+4
* default_3way_compare(): use PyNumber_Check(), rather than testing forGuido van Rossum2003-02-181-3/+3
* SF bug 681122: Built-in function dir() causes refcount leak in baseclasses.Tim Peters2003-02-051-1/+4