summaryrefslogtreecommitdiffstats
path: root/Objects/object.c
Commit message (Expand)AuthorAgeFilesLines
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC...Christian Heimes2007-12-191-34/+34
* Backport of _abccoll.py by Benjamin Arangueren, issue 1383.Guido van Rossum2007-11-221-1/+1
* tuple.__repr__ did not consider a reference loop as it is not possible fromBrett Cannon2007-09-301-0/+5
* Add a bunch of GIL release/acquire points in tp_print implementations and forBrett Cannon2007-09-171-0/+4
* PEP 3123: Provide forward compatibility with Python 3.0, while keepingMartin v. Löwis2007-07-211-40/+40
* Add -3 option to the interpreter to warn about features that areNeal Norwitz2007-05-231-0/+1
* Remove warning: funcion declaration isn't a prototypeJeremy Hylton2007-03-161-2/+1
* Typo and grammar fixes.Georg Brandl2007-03-131-3/+3
* Backport from Py3k branch:Georg Brandl2007-03-121-96/+169
* Slightly revised version of patch #1538956:Marc-André Lemburg2006-08-141-17/+0
* 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