1. f76de62 Fix SF bug #472234: type(obj) calls type->tp_init (Roeland Rengelink) by Guido van Rossum · 23 years ago
  2. 14a6f83 Remove a bunch of stuff that's no longer needed now that update_slot() by Guido van Rossum · 23 years ago
  3. caf5904 slot_sq_item(): ensure that self is an instance of the wrapper's by Guido van Rossum · 23 years ago
  4. b85a8b7 Refactored the update_slot() code a bit to be hopefully slightly more efficient: by Guido van Rossum · 23 years ago
  5. 687ae00 Get rid of __defined__ and tp_defined -- there's no need to by Guido van Rossum · 23 years ago
  6. 2f3ca6e Completely get rid of __dynamic__ and the corresponding by Guido van Rossum · 23 years ago
  7. 825d875 Add (void *) casts to solve some problems on HP-UX 11.0, as discussed by Guido van Rossum · 23 years ago
  8. d396b9c Redid the slot computation. The initial slot assignments are now done by Guido van Rossum · 23 years ago
  9. 5af588b Now that COPYBUF is a new local macro, add #undef COPYBUF. by Guido van Rossum · 23 years ago
  10. fc57ccb SF bug [#470040] ParseTuple t# vs subclasses. by Tim Peters · 23 years ago
  11. 875eeaa Another step in the right direction: when a new class's attribute by Guido van Rossum · 23 years ago
  12. fd38f8e The slot definition table entry for mp_getitem had a bogus wrapper by Guido van Rossum · 23 years ago
  13. 7b9144b Halfway checkin. This is still messy, but it's beginning to address by Guido van Rossum · 23 years ago
  14. 0eb2a6e It turned out not so difficult to support old-style numbers (those by Guido van Rossum · 23 years ago
  15. 4438338 type_subclasses(): debug build was broken due to typo in new assert(). by Tim Peters · 23 years ago
  16. 1c45073 Keep track of a type's subclasses (subtypes), in tp_subclasses, which by Guido van Rossum · 23 years ago
  17. f2a67da Guido suggests, and I agree, to insist that SIZEOF_VOID_P be a power of 2. by Tim Peters · 23 years ago
  18. 6d483d3 _PyObject_VAR_SIZE: always round up to a multiple-of-pointer-size value. by Tim Peters · 23 years ago
  19. 406fe3b Repaired the debug Windows deaths in test_descr, by allocating enough by Tim Peters · 23 years ago
  20. 9475a23 Enable GC for new-style instances. This touches lots of files, since by Guido van Rossum · 23 years ago
  21. 50fda3b Make new classes dynamic by default. by Guido van Rossum · 23 years ago
  22. 59f809d type_new(): cast PyObject_MALLOC's result to char*, for clarity. by Tim Peters · 23 years ago
  23. 2f93e28 SF bug [#467331] ClassType.__doc__ always None. by Tim Peters · 23 years ago
  24. 1e1de1c typeobject.c, slot_tp_gettattr_hook(): fix the speedup hack -- the by Guido van Rossum · 23 years ago
  25. f4593e0 *EXPERIMENTAL* speedup of slot_sq_item. This sped up the following by Guido van Rossum · 23 years ago
  26. da21c01 call_method(), call_maybe(): fix a performance bug: the argument by Guido van Rossum · 23 years ago
  27. 048eb75 Add Garbage Collection support to new-style classes (not yet to their by Guido van Rossum · 23 years ago
  28. 55f2099 Miscellaneous code fiddling: by Guido van Rossum · 23 years ago
  29. 2611162 slot_sq_length(): squash a leak. by Guido van Rossum · 23 years ago
  30. 25d1807 slot_tp_new(): newargs was leaking. by Guido van Rossum · 23 years ago
  31. d016e45 Fix typo found by doerwalter. by Guido van Rossum · 23 years ago
  32. 8b13b3e SF bug [#466173] unpack TypeError unclear by Tim Peters · 23 years ago
  33. 9bea3ab Ouch. The wrapper for __rpow__ was the same as for __pow__, resulting by Guido van Rossum · 23 years ago
  34. 2ed6bf8 Merge branch changes (coercion, rich comparisons) into trunk. by Guido van Rossum · 23 years ago
  35. 874f15a add_operators(): the __floordiv__ and __truediv__ descriptors (and by Guido van Rossum · 23 years ago
  36. 3926a63 - Provisional support for pickling new-style objects. (*) by Guido van Rossum · 23 years ago
  37. a4cb788 Change repr() of a new-style class to say <class 'ClassName'> rather by Guido van Rossum · 23 years ago
  38. 5c294fb Make __class__ assignment possible, when the object structures are the by Guido van Rossum · 23 years ago
  39. 3d45d8f Another comparison patch-up: comparing a type with a dynamic metatype by Guido van Rossum · 23 years ago
  40. ff0e6d6 Fix the baffler that Tim reported: sometimes the repr() of an object by Guido van Rossum · 23 years ago
  41. 19c1cd5 Add the __getattr__ hook back. The rules are now: by Guido van Rossum · 23 years ago
  42. 867a8d2 Change the name of the __getattr__ special method for new-style by Guido van Rossum · 23 years ago
  43. 32d34c8 Add optional docstrings to getset descriptors. Fortunately, there's by Guido van Rossum · 23 years ago
  44. 6f79937 Add optional docstrings to member descriptors. For backwards by Guido van Rossum · 23 years ago
  45. ab3b034 Hopefully fix 3-way comparisons. This unfortunately adds yet another by Guido van Rossum · 23 years ago
  46. ceccae5 wrap_cmpfunc(): added a safety check for the __cmp__ wrapper. We can by Guido van Rossum · 23 years ago
  47. 26f68f5 type_new(): Didn't compile anymore, due to change in struct memberlist by Tim Peters · 23 years ago
  48. a8c60f4 tp_new_wrapper(): A subtle change in the check for safe use. by Guido van Rossum · 23 years ago
  49. f21c6be Add call_maybe(): a variant of call_method() that returns by Guido van Rossum · 23 years ago
  50. 717ce00 call_method(): by Guido van Rossum · 23 years ago
  51. 3f996e7 type_call(): Change in policy. The keyword args (if any) are now passed by Tim Peters · 23 years ago
  52. 16a77ad Generalize operator.indexOf (PySequence_Index) to work with any by Tim Peters · 23 years ago
  53. 9478d07 PyType_IsSubtype(): test tp_flags for HAVE_CLASS bit before accessing by Guido van Rossum · 23 years ago
  54. 41eb14d Give 'super' a decent repr(), and readonly attributes to access the by Guido van Rossum · 23 years ago
  55. 017cb2c Squash new compiler wng. by Tim Peters · 23 years ago
  56. 6fb3fde Pytype_GenericAlloc(): round up size so we zap all four bytes of the by Guido van Rossum · 23 years ago
  57. c414187 Safety measures now that str and tuple are subclassable: by Guido van Rossum · 23 years ago
  58. 31bcff8 Make 'super' subclassable. (Not sure how useful this is yet. :-) by Guido van Rossum · 23 years ago
  59. c806c88 Use new GC API. Remove usage of BASICSIZE macros. by Neil Schemenauer · 23 years ago
  60. e705ef1 Fix super() so that it is usable for static methods (like __new__) as well. by Guido van Rossum · 23 years ago
  61. 5592e4d Fix a typo in SLOT0 macro for the declaration of cache_str. by Guido van Rossum · 23 years ago
  62. 2730b13 Finish the previous checkin: also avoid getattr when calling the method by Guido van Rossum · 23 years ago
  63. 6071873 Change in policy: when a slot_tp_xxx function looks for the __xxx__ method, by Guido van Rossum · 23 years ago
  64. 7ce3694 repr's converted to using PyString_FromFormat() instead of sprintf'ing by Barry Warsaw · 23 years ago
  65. 705f0f5 Add 'super', another new object type with magical properties. by Guido van Rossum · 23 years ago
  66. 2c25239 slot_tp_descr_get(): guard against NULL obj or type (bug reported by by Guido van Rossum · 23 years ago
  67. 60f0188 Merge changes from r22a2-branch back into trunk. Also, change patch by Barry Warsaw · 23 years ago
  68. 5d815f3 Address SF bug #442813. The sequence getitem wrappers should do by Guido van Rossum · 23 years ago
  69. 9676b22 Weak reference support, closing SF bug #451773. by Guido van Rossum · 23 years ago
  70. 1a49350 type_new(): look for __dynamic__ at the module level (after looking in by Guido van Rossum · 23 years ago
  71. 8d32c8b type_new(): only defer to the winning metatype if it's different from by Guido van Rossum · 23 years ago
  72. 76e6963 Fix object_repr() to include the module (using the same rules as by Guido van Rossum · 23 years ago
  73. e3eb1f2 Patch #427190: Implement and use METH_NOARGS and METH_O. by Martin v. Löwis · 23 years ago
  74. c354221 Fix SF bug #442501: calculate __module__ properly. by Guido van Rossum · 23 years ago
  75. 8098ddb Subtle change to make None.__class__ work: by Guido van Rossum · 23 years ago
  76. b8f6366 - Another big step in the right direction. All the overridable by Guido van Rossum · 23 years ago
  77. 4dd64ab Non-function fields, like tp_dictoffset and tp_weaklistoffset, should by Guido van Rossum · 23 years ago
  78. 8e24818 Make dynamic types work as intended. Or at least more so. by Guido van Rossum · 23 years ago
  79. 8de8680 Temporary stop-gap fix for dynamic classes, so they pass the test. by Guido van Rossum · 23 years ago
  80. 13d52f0 - Big changes to fix SF bug #442833 (a nasty multiple inheritance by Guido van Rossum · 23 years ago
  81. d614f97 Change PyType_Ready() to use the READY and READYING flags. This makes by Guido van Rossum · 23 years ago
  82. 29687cd Sigh. Strengthen the resriction of the previous checkin: tp_new is by Guido van Rossum · 23 years ago
  83. c11e192 Thinking back to the 2.22 revision, I didn't like what I did there one by Guido van Rossum · 23 years ago
  84. dc91b99 Proper support for binary operators, including true division and floor by Guido van Rossum · 23 years ago
  85. 8e938b4 Removed extraneous semicolons that caused a gazzilion "empty declaration" warnings in the MetroWerks compiler. by Jack Jansen · 23 years ago
  86. 528b7eb - Rename PyType_InitDict() to PyType_Ready(). by Guido van Rossum · 23 years ago
  87. f040ede Cosmetics: by Guido van Rossum · 23 years ago
  88. 0d231ed A totally new way to do the __new__ wrapper. This should address the by Guido van Rossum · 23 years ago
  89. 2b8d7bd Fix SF #442791 (revisited): No __delitem__ wrapper was defined. by Guido van Rossum · 23 years ago
  90. 6d6c1a3 Merge of descr-branch back into trunk. by Tim Peters · 23 years ago
  91. fcc54ca Added a missing cast to the hashfunc initializer. by Jack Jansen · 23 years ago
  92. 0163d6d Patch #424475: Speed-up tp_compare usage, by special-casing the common by Martin v. Löwis · 23 years ago
  93. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  94. 45cfbcc ANSI-fication of the sources. by Fred Drake · 24 years ago
  95. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
  96. fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
  97. 80c2a16 American spelling in doc string. by Guido van Rossum · 27 years ago
  98. c0b618a Quickly renamed the last directory. by Guido van Rossum · 27 years ago
  99. d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
  100. 29ca26e added getattr(), supporting __doc__ and _name__ by Guido van Rossum · 30 years ago