1. 2309498 Three's a charm: yet another fix for SF bug 551412. Thinking again by Guido van Rossum · 22 years ago
  2. 9923ffe Address SF bug 519621: slots weren't traversed by GC. by Guido van Rossum · 22 years ago
  3. b65c65b Address the residual issue with the fix for SF 551412 in by Guido van Rossum · 22 years ago
  4. 9fc8a29 Fix for SF bug 551412. When _PyType_Lookup() is called on a type by Guido van Rossum · 22 years ago
  5. 9ee4b94 Add a safeguard against setting the class to something with a by Guido van Rossum · 22 years ago
  6. 2b85897 type_get_doc(): Squash compiler wng about incompatible ptr types. by Tim Peters · 22 years ago
  7. 6ca7d41 SF bug 542984. by Guido van Rossum · 22 years ago
  8. b6b8942 SF bug #541883 (Vincent Fiack). by Guido van Rossum · 22 years ago
  9. 09a2ae5 Change signature of _PyObject_GC_Malloc to match PyObject_MALLOC. by Neil Schemenauer · 22 years ago
  10. 0986d82 - A type can now inherit its metatype from its base type. Previously, by Guido van Rossum · 22 years ago
  11. 8ace1ab - Changed new-style class instantiation so that when C's __new__ by Guido van Rossum · 22 years ago
  12. 6b8ab74 Don't inherit tp_new! This is a retraction of half of the previous by Guido van Rossum · 22 years ago
  13. cc8fe04 Inherit tp_new and tp_is_gc. by Guido van Rossum · 22 years ago
  14. c334df5 A much revised version of SF patch 514662, by Naofumi Honda. This by Guido van Rossum · 22 years ago
  15. bfc2e5e Clarifying code rearrangement and comments by David Abrahams. I've by Guido van Rossum · 22 years ago
  16. d464107 Fold some long lines. Delete blank initial line. by Guido van Rossum · 22 years ago
  17. 155db9a SF patch 537536 by Phillip J. Eby, fix for SF bug 535444, super() by Guido van Rossum · 22 years ago
  18. 93c1e23 Use METH_VARARGS rather than METH_OLDARGS implicitly (args are ignored) by Neal Norwitz · 22 years ago
  19. 7bf9715 Introduce two new flag bits that can be set in a PyMethodDef method by Fred Drake · 22 years ago
  20. 2400831 SF patch 530070: pydoc regression, from Martin and Guido. by Tim Peters · 22 years ago
  21. 0628dcf "Fix" for SF bug #520644: __slots__ are not pickled. by Guido van Rossum · 22 years ago
  22. dfce3bf Bugfix candidate. Adapter from SF patch 528038; fixes SF bug 527816. by Guido van Rossum · 22 years ago
  23. f9bd6b0 Allow __doc__ to be of arbitrary type. Patch by James Henstridge, by Martin v. Löwis · 22 years ago
  24. f884b74 - PyType_Ready(): Initialize the ob_type field to &PyType_Type if it's by Guido van Rossum · 23 years ago
  25. e54616c (Merge into trunk.) by Guido van Rossum · 23 years ago
  26. 14227b4 The previous checkin to clear __slots__ variables did a little bit of by Guido van Rossum · 23 years ago
  27. 33bab01 Fix SF bug #489581: __slots__ leak. by Guido van Rossum · 23 years ago
  28. d331cb5 At the PythonLabs meeting someone mentioned it would make Jim really by Guido van Rossum · 23 years ago
  29. 64b206c Fix SF bug #486144: Uninitialized __slot__ vrbl is None. by Guido van Rossum · 23 years ago
  30. 5b443c6 Address SF patch #480716 as well as related issues. by Guido van Rossum · 23 years ago
  31. 1d5b3f2 Fix for SF bug #485678. by Guido van Rossum · 23 years ago
  32. a91e964 Changing diapers reminded Guido that he wanted to allow for some measure by Tim Peters · 23 years ago
  33. a427a2b Rename "dictionary" (type and constructor) to "dict". by Tim Peters · 23 years ago
  34. 7ad2d1e Add __del__ callbacks. They are too useful to leave out. by Guido van Rossum · 23 years ago
  35. afe7a94 When overriding __str__ or __repr__, set the tp_print slot to NULL. by Guido van Rossum · 23 years ago
  36. 3abca12 SF bug #475327: type() produces incorrect error msg by Tim Peters · 23 years ago
  37. 6661be3 Allow assignment to newinstance.__dict__. by Guido van Rossum · 23 years ago
  38. c8e5645 Methods of built-in types now properly check for keyword arguments by Guido van Rossum · 23 years ago
  39. f23473f Add missing "static" declarations (found by "make smelly"). by Neil Schemenauer · 23 years ago
  40. 6d20407 Big internal change that should have no external effects: unify the by Guido van Rossum · 23 years ago
  41. f76de62 Fix SF bug #472234: type(obj) calls type->tp_init (Roeland Rengelink) by Guido van Rossum · 23 years ago
  42. 14a6f83 Remove a bunch of stuff that's no longer needed now that update_slot() by Guido van Rossum · 23 years ago
  43. caf5904 slot_sq_item(): ensure that self is an instance of the wrapper's by Guido van Rossum · 23 years ago
  44. b85a8b7 Refactored the update_slot() code a bit to be hopefully slightly more efficient: by Guido van Rossum · 23 years ago
  45. 687ae00 Get rid of __defined__ and tp_defined -- there's no need to by Guido van Rossum · 23 years ago
  46. 2f3ca6e Completely get rid of __dynamic__ and the corresponding by Guido van Rossum · 23 years ago
  47. 825d875 Add (void *) casts to solve some problems on HP-UX 11.0, as discussed by Guido van Rossum · 23 years ago
  48. d396b9c Redid the slot computation. The initial slot assignments are now done by Guido van Rossum · 23 years ago
  49. 5af588b Now that COPYBUF is a new local macro, add #undef COPYBUF. by Guido van Rossum · 23 years ago
  50. fc57ccb SF bug [#470040] ParseTuple t# vs subclasses. by Tim Peters · 23 years ago
  51. 875eeaa Another step in the right direction: when a new class's attribute by Guido van Rossum · 23 years ago
  52. fd38f8e The slot definition table entry for mp_getitem had a bogus wrapper by Guido van Rossum · 23 years ago
  53. 7b9144b Halfway checkin. This is still messy, but it's beginning to address by Guido van Rossum · 23 years ago
  54. 0eb2a6e It turned out not so difficult to support old-style numbers (those by Guido van Rossum · 23 years ago
  55. 4438338 type_subclasses(): debug build was broken due to typo in new assert(). by Tim Peters · 23 years ago
  56. 1c45073 Keep track of a type's subclasses (subtypes), in tp_subclasses, which by Guido van Rossum · 23 years ago
  57. f2a67da Guido suggests, and I agree, to insist that SIZEOF_VOID_P be a power of 2. by Tim Peters · 23 years ago
  58. 6d483d3 _PyObject_VAR_SIZE: always round up to a multiple-of-pointer-size value. by Tim Peters · 23 years ago
  59. 406fe3b Repaired the debug Windows deaths in test_descr, by allocating enough by Tim Peters · 23 years ago
  60. 9475a23 Enable GC for new-style instances. This touches lots of files, since by Guido van Rossum · 23 years ago
  61. 50fda3b Make new classes dynamic by default. by Guido van Rossum · 23 years ago
  62. 59f809d type_new(): cast PyObject_MALLOC's result to char*, for clarity. by Tim Peters · 23 years ago
  63. 2f93e28 SF bug [#467331] ClassType.__doc__ always None. by Tim Peters · 23 years ago
  64. 1e1de1c typeobject.c, slot_tp_gettattr_hook(): fix the speedup hack -- the by Guido van Rossum · 23 years ago
  65. f4593e0 *EXPERIMENTAL* speedup of slot_sq_item. This sped up the following by Guido van Rossum · 23 years ago
  66. da21c01 call_method(), call_maybe(): fix a performance bug: the argument by Guido van Rossum · 23 years ago
  67. 048eb75 Add Garbage Collection support to new-style classes (not yet to their by Guido van Rossum · 23 years ago
  68. 55f2099 Miscellaneous code fiddling: by Guido van Rossum · 23 years ago
  69. 2611162 slot_sq_length(): squash a leak. by Guido van Rossum · 23 years ago
  70. 25d1807 slot_tp_new(): newargs was leaking. by Guido van Rossum · 23 years ago
  71. d016e45 Fix typo found by doerwalter. by Guido van Rossum · 23 years ago
  72. 8b13b3e SF bug [#466173] unpack TypeError unclear by Tim Peters · 23 years ago
  73. 9bea3ab Ouch. The wrapper for __rpow__ was the same as for __pow__, resulting by Guido van Rossum · 23 years ago
  74. 2ed6bf8 Merge branch changes (coercion, rich comparisons) into trunk. by Guido van Rossum · 23 years ago
  75. 874f15a add_operators(): the __floordiv__ and __truediv__ descriptors (and by Guido van Rossum · 23 years ago
  76. 3926a63 - Provisional support for pickling new-style objects. (*) by Guido van Rossum · 23 years ago
  77. a4cb788 Change repr() of a new-style class to say <class 'ClassName'> rather by Guido van Rossum · 23 years ago
  78. 5c294fb Make __class__ assignment possible, when the object structures are the by Guido van Rossum · 23 years ago
  79. 3d45d8f Another comparison patch-up: comparing a type with a dynamic metatype by Guido van Rossum · 23 years ago
  80. ff0e6d6 Fix the baffler that Tim reported: sometimes the repr() of an object by Guido van Rossum · 23 years ago
  81. 19c1cd5 Add the __getattr__ hook back. The rules are now: by Guido van Rossum · 23 years ago
  82. 867a8d2 Change the name of the __getattr__ special method for new-style by Guido van Rossum · 23 years ago
  83. 32d34c8 Add optional docstrings to getset descriptors. Fortunately, there's by Guido van Rossum · 23 years ago
  84. 6f79937 Add optional docstrings to member descriptors. For backwards by Guido van Rossum · 23 years ago
  85. ab3b034 Hopefully fix 3-way comparisons. This unfortunately adds yet another by Guido van Rossum · 23 years ago
  86. ceccae5 wrap_cmpfunc(): added a safety check for the __cmp__ wrapper. We can by Guido van Rossum · 23 years ago
  87. 26f68f5 type_new(): Didn't compile anymore, due to change in struct memberlist by Tim Peters · 23 years ago
  88. a8c60f4 tp_new_wrapper(): A subtle change in the check for safe use. by Guido van Rossum · 23 years ago
  89. f21c6be Add call_maybe(): a variant of call_method() that returns by Guido van Rossum · 23 years ago
  90. 717ce00 call_method(): by Guido van Rossum · 23 years ago
  91. 3f996e7 type_call(): Change in policy. The keyword args (if any) are now passed by Tim Peters · 23 years ago
  92. 16a77ad Generalize operator.indexOf (PySequence_Index) to work with any by Tim Peters · 23 years ago
  93. 9478d07 PyType_IsSubtype(): test tp_flags for HAVE_CLASS bit before accessing by Guido van Rossum · 23 years ago
  94. 41eb14d Give 'super' a decent repr(), and readonly attributes to access the by Guido van Rossum · 23 years ago
  95. 017cb2c Squash new compiler wng. by Tim Peters · 23 years ago
  96. 6fb3fde Pytype_GenericAlloc(): round up size so we zap all four bytes of the by Guido van Rossum · 23 years ago
  97. c414187 Safety measures now that str and tuple are subclassable: by Guido van Rossum · 23 years ago
  98. 31bcff8 Make 'super' subclassable. (Not sure how useful this is yet. :-) by Guido van Rossum · 23 years ago
  99. c806c88 Use new GC API. Remove usage of BASICSIZE macros. by Neil Schemenauer · 23 years ago
  100. e705ef1 Fix super() so that it is usable for static methods (like __new__) as well. by Guido van Rossum · 23 years ago