summaryrefslogtreecommitdiffstats
path: root/Objects/classobject.c
Commit message (Expand)AuthorAgeFilesLines
* Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,...Christian Heimes2008-02-161-2/+11
* Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,...Christian Heimes2008-02-061-4/+20
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-191-1/+1
* Issue #1587: Added instancemethod wrapper for PyCFunctions. The Python C APIChristian Heimes2007-12-111-7/+248
* Fixed a bug found by Marcin KowalczykChristian Heimes2007-12-081-1/+1
* Removed the API to create unbound methods and simplified the API for bound me...Christian Heimes2007-11-271-135/+36
* Merged revisions 56467-56482 via svnmerge fromMartin v. Löwis2007-07-211-2/+1
* Add a format specifier %V to PyUnicode_FromFormat(), that works similar to %U,Walter Dörwald2007-06-111-9/+7
* Fix getclassname. Fixes test_descrtut.Martin v. Löwis2007-06-101-2/+2
* Make identifiers str (not str8) objects throughout.Martin v. Löwis2007-06-101-5/+5
* Add a format specifier %R to PyUnicode_FromFormat(), which embedsWalter Dörwald2007-05-191-5/+3
* Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirrorWalter Dörwald2007-05-181-13/+5
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-0/+2
* Restructure comparison dramatically. There is no longer a defaultGuido van Rossum2006-08-241-41/+59
* Completely get rid of PyClass and PyInstance.Guido van Rossum2006-08-171-2032/+2
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-5/+6
* Get rid of most of the flags (in tp_flags) that keep track of variousGuido van Rossum2006-07-271-5/+4
* Merge the rest of the trunk.Thomas Wouters2006-06-081-3/+14
* Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svnThomas Wouters2006-06-081-2/+2
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-271-18/+9
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-152/+84
* Get rid of remnants of integer divisionNeal Norwitz2006-03-241-4/+0
* Checking in the code for PEP 357.Guido van Rossum2006-03-071-0/+38
* Revert backwards-incompatible const changes.Martin v. Löwis2006-02-271-1/+1
* Remove size constraints in SLICE opcodes.Martin v. Löwis2006-02-171-3/+3
* Merge ssize_t branch.Martin v. Löwis2006-02-151-22/+26
* Add const to several API functions that take char *.Jeremy Hylton2005-12-101-1/+1
* - On 64-bit platforms, when __len__() returns a value that cannot beGuido van Rossum2005-09-201-1/+1
* A minor fix for 64-bit platforms: when __len__() returns Python intGuido van Rossum2005-09-191-1/+11
* Insert missing flag.Raymond Hettinger2005-06-191-1/+1
* Fix for rather inaccurately titled bugMichael W. Hudson2005-03-301-0/+6
* A static swapped_op[] array was defined in 3 different C files, & I thinkTim Peters2004-09-231-4/+1
* Repair the same thinko in two places about handling of _Py_RefTotal inMichael W. Hudson2004-08-031-6/+7
* - When method objects have an attribute that can be satisfied eitherGuido van Rossum2003-11-221-28/+30
* Deleting cyclic object comparison.Armin Rigo2003-10-281-6/+4
* Simplify and speedup uses of Py_BuildValue():Raymond Hettinger2003-10-121-14/+14
* Fix leak in classobject.c. The leak surfaced on the error exit whenRaymond Hettinger2003-09-161-0/+1
* Make it possible to call instancemethod() with 2 arguments.Guido van Rossum2003-04-091-2/+2
* New private API function _PyInstance_Lookup. gc will use this to figureTim Peters2003-04-071-0/+21
* Refactor instancemethod_descr_get() to (a) be more clear, (b) be safeGuido van Rossum2003-02-111-8/+18
* SF patch #659536: Use PyArg_UnpackTuple where possible.Raymond Hettinger2002-12-291-1/+1
* Change issubclass() so that recursive tuples (directly or indirectlyWalter Dörwald2002-12-121-1/+2
* Enhance issubclass() and PyObject_IsSubclass() so that a tuple isWalter Dörwald2002-12-121-0/+7
* Since properties are supported here, is possible thatGuido van Rossum2002-10-291-13/+12
* Fix (real! :-) memory leaks in half_cmp and half_binop.Guido van Rossum2002-10-181-1/+4
* getinstclassname(): Squash new compiler wng in assert (comparison ofTim Peters2002-08-201-1/+1
* SF patch 576101, by Oren Tirosh: alternative implementation ofGuido van Rossum2002-08-191-20/+24
* object.h special-build macro minefield: renamed all the new lexicalTim Peters2002-07-111-49/+38
* Removed WITH_CYCLE_GC #ifdef-ery. Holes:Tim Peters2002-07-071-3/+0
* About the new but unreferenced new_class, Guido sez:Michael W. Hudson2002-06-181-15/+0