summaryrefslogtreecommitdiffstats
path: root/Objects/object.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Recursive compare machinery: The code that intended to exempt tuplesTim Peters2003-01-201-9/+14
* Fix SF bug #667147, Segmentation fault printing str subclassNeal Norwitz2003-01-131-3/+16
* Remove _Py_ResetReferences. Fixes bug #529750 "Circular reference makesNeil Schemenauer2002-11-171-7/+0
* PyObject_Init[Var] is almost always called from the PyObject_NEW[_VAR]Guido van Rossum2002-10-111-10/+4
* Speedup for PyObject_IsTrue(): check for True and False first.Guido van Rossum2002-08-241-0/+4
* Speedup for PyObject_RichCompareBool(): PyObject_RichCompare() almostGuido van Rossum2002-08-241-1/+4
* Another modest speedup in PyObject_GenericGetAttr(): inline the callGuido van Rossum2002-08-191-2/+26
* Inline call to _PyObject_GetDictPtr() in PyObject_GenericGetAttr().Guido van Rossum2002-08-191-3/+20
* Replace abort with Py_FatalError.Martin v. Löwis2002-08-071-1/+1
* Excise DL_IMPORT/EXPORT from object.h, and related files. This patchMark Hammond2002-07-291-2/+2
* object.h special-build macro minefield: renamed all the new lexicalTim Peters2002-07-111-4/+4
* The Py_REF_DEBUG/COUNT_ALLOCS/Py_TRACE_REFS macro minefield: addedTim Peters2002-07-091-0/+15
* SF bug 578752: COUNT_ALLOCS vs heap typesTim Peters2002-07-081-0/+9
* Rearranged and added comments to object.h, to clarify many thingsTim Peters2002-07-071-6/+2
* Removed 3 unlikely #includes that were only needed for the non-gc flavorTim Peters2002-07-071-5/+0
* Trashcan cleanup: Now that cyclic gc is always there, the trashcanTim Peters2002-07-071-50/+40
* Removed WITH_CYCLE_GC #ifdef-ery. Holes:Tim Peters2002-07-071-43/+0
* SF # 533070 Silence AIX C Compiler WarningsNeal Norwitz2002-06-131-1/+1
* SF # 561244 Micro optimizationsNeal Norwitz2002-06-131-5/+3
* Fix typoNeal Norwitz2002-05-311-1/+1
* Implement the intention of SF patch 472523 (but coded differently).Guido van Rossum2002-05-311-15/+67
* - A new type object, 'string', is added. This is a common base typeGuido van Rossum2002-05-241-0/+3
* Jim Fulton reported a segfault in dir(). A heavily proxied objectGuido van Rossum2002-05-131-7/+15
* PyNumber_CoerceEx: this took a shortcut (not doing anything) when theGuido van Rossum2002-04-261-1/+4
* First stab at rationalizing the PyMem_ API. Mixing PyObject_xyz withTim Peters2002-04-121-6/+1
* Move PyObject_Malloc and PyObject_Free to obmalloc.c.Neil Schemenauer2002-04-121-21/+2