summaryrefslogtreecommitdiffstats
path: root/Objects/typeobject.c
Commit message (Expand)AuthorAgeFilesLines
...
* Squash a few calls to the hideously expensive PyObject_CallObject(o,a)Guido van Rossum2002-08-161-5/+14
* Fix SF bug 595838 -- buffer in type_new() should not be static. MovedGuido van Rossum2002-08-161-1/+1
* PyType_Ready(): initialize the base class a bit earlier, so that if weGuido van Rossum2002-08-141-6/+6
* Allow more docstrings to be removed during compilationNeal Norwitz2002-08-131-5/+7
* Allow docstrings to be removed during compilation for *SLOT macro and friendsNeal Norwitz2002-08-131-3/+5
* Allow docstrings to be removed during compilationNeal Norwitz2002-08-131-3/+3
* Fix MSVC warnings.Guido van Rossum2002-08-121-2/+2
* Refactor how __dict__ and __weakref__ interact with __slots__.Guido van Rossum2002-08-121-55/+147
* Disallow class assignment completely unless both old and new are heapGuido van Rossum2002-08-101-6/+9
* Major speedup for new-style class creation. Turns out there was someGuido van Rossum2002-08-091-0/+22
* Significant speedup in new-style object creation: in slot_tp_new(),Guido van Rossum2002-08-081-1/+8
* A modest speedup of object deallocation. call_finalizer() did ratherGuido van Rossum2002-08-081-66/+70
* Fix a subtle bug in the trashcan code I added yesterday toGuido van Rossum2002-08-071-2/+3
* Fix SF bug 574207 (chained __slots__ dealloc segfault).Guido van Rossum2002-08-061-10/+52
* SF patch 588728 (Nathan Srebro).Guido van Rossum2002-08-011-0/+18
* SF patch #587889, fix memory leak of tp_docNeal Norwitz2002-07-301-0/+1
* Don't be so hasty. If PyInt_AsLong() raises an error, don't set ValueError.Jeremy Hylton2002-07-251-0/+2
* Complain if __len__() returns < 0, just like classic classes.Jeremy Hylton2002-07-251-0/+5
* staticforward bites the dust.Jeremy Hylton2002-07-171-11/+11
* The object returned by tp_new() may not have a tp_init.Jeremy Hylton2002-07-161-1/+2
* valid_identifier(): use an unsigned char* so that isalpha() will doGuido van Rossum2002-07-161-2/+2
* object.h special-build macro minefield: renamed all the new lexicalTim Peters2002-07-111-38/+28
* Fix SF bug 572567: Memory leak in object comparison.Raymond Hettinger2002-06-241-0/+1
* SF 569257 -- Name mangle double underscored variable names in __slots__.Raymond Hettinger2002-06-201-1/+21
* Patch from SF bug 570483 (Tim Northover).Guido van Rossum2002-06-181-0/+5
* Inexplicably, recurse_down_subclasses() was comparing the objectGuido van Rossum2002-06-141-1/+2
* Patch #568124: Add doc string macros.Martin v. Löwis2002-06-131-4/+4
* Hopefully this addresses the remaining issues of SF bugs 459235 andGuido van Rossum2002-06-131-24/+39
* Undo the last chunk of the previous patch, putting back a usefulGuido van Rossum2002-06-101-1/+3
* In the recent python-dev thread "Bizarre new test failure", weGuido van Rossum2002-06-101-32/+48
* Three's a charm: yet another fix for SF bug 551412. Thinking againGuido van Rossum2002-06-101-19/+17
* Address SF bug 519621: slots weren't traversed by GC.Guido van Rossum2002-06-041-49/+137
* Address the residual issue with the fix for SF 551412 inGuido 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
* Add a safeguard against setting the class to something with aGuido van Rossum2002-05-241-0/+10
* type_get_doc(): Squash compiler wng about incompatible ptr types.Tim Peters2002-04-181-1/+2
* SF bug 542984.Guido van Rossum2002-04-181-7/+11
* SF bug #541883 (Vincent Fiack).Guido van Rossum2002-04-151-0/+5
* Change signature of _PyObject_GC_Malloc to match PyObject_MALLOC.Neil Schemenauer2002-04-121-6/+6
* - A type can now inherit its metatype from its base type. Previously,Guido van Rossum2002-04-081-6/+6
* - Changed new-style class instantiation so that when C's __new__Guido van Rossum2002-04-061-0/+4
* Don't inherit tp_new! This is a retraction of half of the previousGuido van Rossum2002-04-051-1/+0
* Inherit tp_new and tp_is_gc.Guido van Rossum2002-04-051-0/+2
* A much revised version of SF patch 514662, by Naofumi Honda. ThisGuido van Rossum2002-04-041-99/+128
* Clarifying code rearrangement and comments by David Abrahams. I'veGuido van Rossum2002-04-041-28/+46
* Fold some long lines. Delete blank initial line.Guido van Rossum2002-04-031-4/+6
* SF patch 537536 by Phillip J. Eby, fix for SF bug 535444, super()Guido van Rossum2002-04-021-3/+7
* Use METH_VARARGS rather than METH_OLDARGS implicitly (args are ignored)Neal Norwitz2002-03-311-1/+1
* Introduce two new flag bits that can be set in a PyMethodDef methodFred Drake2002-03-281-2/+29
* SF patch 530070: pydoc regression, from Martin and Guido.Tim Peters2002-03-171-3/+19