summaryrefslogtreecommitdiffstats
path: root/Objects/typeobject.c
Commit message (Expand)AuthorAgeFilesLines
* New in 2.2.2!Guido van Rossum2002-10-111-1/+0
* Backport, at the reqest of Kevin Jacobs:Guido van Rossum2002-10-071-0/+4
* Backport:Guido van Rossum2002-08-141-6/+6
* Backport:Guido van Rossum2002-08-011-0/+18
* SF patch #587889, fix memory leak of tp_docNeal Norwitz2002-07-301-0/+1
* The object returned by tp_new() may not have a tp_init.Jeremy Hylton2002-07-161-1/+2
* Attempting to resurrect a dying instance of a new-style class in aTim Peters2002-07-111-1/+2
* Fix SF Bug 572567: Memory leak in object comparisonRaymond Hettinger2002-06-241-0/+1
* Backport:Guido van Rossum2002-06-181-0/+5
* Backport:Guido van Rossum2002-06-141-1/+2
* Backport two patches that belong together:Guido van Rossum2002-06-101-29/+47
* Backport:Guido van Rossum2002-06-101-19/+17
* Backport to 2.2.x:Guido van Rossum2002-06-041-45/+109
* Backport to 2.2.x:Guido van Rossum2002-06-031-1/+11
* Fix for SF bug 551412. When _PyType_Lookup() is called on a typeGuido van Rossum2002-05-241-0/+6
* backport gvanrossum's patch:Anthony Baxter2002-04-181-0/+5
* Darn. Of course the warning that Tim killed on the trunk must also beGuido van Rossum2002-04-181-1/+2
* Backport rev 2.143 (note: some earlier bugfix candidates still TBD).Guido van Rossum2002-04-181-7/+11
* - A type can now inherit its metatype from its base type. Previously,Guido van Rossum2002-04-081-6/+6
* Backport half a patch from the trunk. This inherits tp_is_gc from aGuido van Rossum2002-04-051-0/+1
* backport gvanrossum's checkin ofMichael W. Hudson2002-04-051-3/+7
* SF patch 530070: pydoc regression, from Martin and Guido.Tim Peters2002-03-171-3/+19
* backport gvanrossum's checkin ofMichael W. Hudson2002-03-161-1/+37
* backport gvanrossum's checkin ofMichael W. Hudson2002-03-111-1/+1
* backport loewis' checkin ofMichael W. Hudson2002-02-221-4/+16
* - PyType_Ready(): Initialize the ob_type field to &PyType_Type if it'sGuido van Rossum2001-12-171-0/+16
* (Merge into trunk.)Guido van Rossum2001-12-141-1/+3
* The previous checkin to clear __slots__ variables did a little bit ofGuido van Rossum2001-12-061-20/+20
* Fix SF bug #489581: __slots__ leak.Guido van Rossum2001-12-051-2/+22
* At the PythonLabs meeting someone mentioned it would make Jim reallyGuido van Rossum2001-12-051-2/+2
* Fix SF bug #486144: Uninitialized __slot__ vrbl is None.Guido van Rossum2001-12-041-2/+4
* Address SF patch #480716 as well as related issues.Guido van Rossum2001-12-031-17/+36
* Fix for SF bug #485678.Guido van Rossum2001-12-031-1/+1
* Changing diapers reminded Guido that he wanted to allow for some measureTim Peters2001-11-141-29/+97
* Rename "dictionary" (type and constructor) to "dict".Tim Peters2001-10-291-1/+1
* Add __del__ callbacks. They are too useful to leave out.Guido van Rossum2001-10-291-0/+74
* When overriding __str__ or __repr__, set the tp_print slot to NULL.Guido van Rossum2001-10-291-0/+2
* SF bug #475327: type() produces incorrect error msgTim Peters2001-10-271-6/+21
* Allow assignment to newinstance.__dict__.Guido van Rossum2001-10-261-1/+24
* Methods of built-in types now properly check for keyword argumentsGuido van Rossum2001-10-221-12/+14
* Add missing "static" declarations (found by "make smelly").Neil Schemenauer2001-10-211-4/+4
* Big internal change that should have no external effects: unify theGuido van Rossum2001-10-211-527/+243
* Fix SF bug #472234: type(obj) calls type->tp_init (Roeland Rengelink)Guido van Rossum2001-10-181-0/+7
* Remove a bunch of stuff that's no longer needed now that update_slot()Guido van Rossum2001-10-171-42/+20
* slot_sq_item(): ensure that self is an instance of the wrapper'sGuido van Rossum2001-10-171-3/+5
* Refactored the update_slot() code a bit to be hopefully slightly moreGuido van Rossum2001-10-161-57/+61
* Get rid of __defined__ and tp_defined -- there's no need toGuido van Rossum2001-10-151-41/+23
* Completely get rid of __dynamic__ and the correspondingGuido van Rossum2001-10-151-101/+21
* Add (void *) casts to solve some problems on HP-UX 11.0, as discussedGuido van Rossum2001-10-151-3/+3
* Redid the slot computation. The initial slot assignments are now doneGuido van Rossum2001-10-131-64/+91