1. 83245b5 SF bug #699934: Obscure error message by Raymond Hettinger · 21 years ago
  2. e5c691a - The extended type structure used for heap types (new-style by Guido van Rossum · 21 years ago
  3. 036f999 Implementing the salient parts of __reduce_ex__ in C. by Guido van Rossum · 21 years ago
  4. c53f009 Introducing __reduce_ex__, which is called with a protocol number argument by Guido van Rossum · 21 years ago
  5. 97e5ff5 Removed unreferenced label. by Tim Peters · 21 years ago
  6. 8e80a72 The recent changes to super(), in particular supercheck(), broke when by Guido van Rossum · 21 years ago
  7. 298e421 SF patch #685738 by Michael Stone. by Guido van Rossum · 21 years ago
  8. a89d10e Implement another useful feature for proxies: in super(X, x), x may by Guido van Rossum · 21 years ago
  9. eea4718 Fix from SF #681367: inherit tp_as_buffer. This only applies to C by Guido van Rossum · 21 years ago
  10. 9af48ff Inline create_specialmethod() -- since METH_CLASS is done differently by Guido van Rossum · 21 years ago
  11. 82ed25c Add basic arg sanity checking to wrap_descr_get(). This is called by Guido van Rossum · 21 years ago
  12. 3f50cdc Get rid of the "bozo" __getstate__ that was inserted when __slots__ by Guido van Rossum · 21 years ago
  13. c9172d3 Comment typo fix by Andrew M. Kuchling · 21 years ago
  14. ce8bcd8 Fix for SF #668433. I'm not explaining it here; ample comments are in the code. by Guido van Rossum · 21 years ago
  15. 373c741 Fix for SF bug #642358: only provide a new with a __dict__ or by Guido van Rossum · 22 years ago
  16. cd11880 Add a refinement to SLOT1BINFULL() that fixes the problem reported in by Guido van Rossum · 22 years ago
  17. 768158c Fix an out-of-bound index in pmerge() discovered by Zooko (SF bug by Guido van Rossum · 22 years ago
  18. a828586 Punctuation fix. by Raymond Hettinger · 22 years ago
  19. 3bbc0ee Tighten the tests for assignment to __bases__: disallow empty tuple. by Guido van Rossum · 22 years ago
  20. bca1cbc SF 548651: Fix the METH_CLASS implementation. by Tim Peters · 22 years ago
  21. ea7f75d slot_nb_nonzero(): Another leak uncovered by the sandbox datetime by Tim Peters · 22 years ago
  22. 61ce0a9 slot_tp_hash(): In the normal path, this leaked a reference to the by Tim Peters · 22 years ago
  23. ade8c8b Nudge getting __module__ and __name__ for new-style classes so that by Michael W. Hudson · 22 years ago
  24. 7e7c00d I don't know why staring at the email to python-checkins made me by Michael W. Hudson · 22 years ago
  25. 586da8f Readjustments to the way we cope with exceptions from subclasses' by Michael W. Hudson · 22 years ago
  26. caf17be I had the inheritance cycle stuff backwards. Oops! by Michael W. Hudson · 22 years ago
  27. ac74f5d Initialize a variable. Hope this makes things work for Guido. by Michael W. Hudson · 22 years ago
  28. 98bbc49 This is my patch: by Michael W. Hudson · 22 years ago
  29. 98f3373 A tweaked version of Jeremy's patch #642489, to produce better error by Guido van Rossum · 22 years ago
  30. 9a6b8d8 Repaired illegal syntax most compilers probably let slide (but MSVC by Tim Peters · 22 years ago
  31. 1f12131 Use the new C3 MRO algorithm, implemented by Samuele Pedroni (SF patch by Guido van Rossum · 22 years ago
  32. 673cd82 Fix SF # 624982, Potential AV in slot_sq_item, by Greg Chapman by Neal Norwitz · 22 years ago
  33. 3930bc3 Sigh. That wasn't a memory leak, that was Guido committing before by Guido van Rossum · 22 years ago
  34. 72297bb Fix memory leak in add_subclass() found by NealN with valgrind. Will backport. by Guido van Rossum · 22 years ago
  35. 6e5680f For some reason (probably cut and paste), __ipow__ for new-style by Guido van Rossum · 22 years ago
  36. 13b1a5c Don't drop old slots if _unicode_to_string did not change anything. by Martin v. Löwis · 22 years ago
  37. d919a59 Allow Unicode strings in __slots__, converting them to byte strings. by Martin v. Löwis · 22 years ago
  38. 84b2bed Squash a few calls to the hideously expensive PyObject_CallObject(o,a) by Guido van Rossum · 22 years ago
  39. 8e82920 Fix SF bug 595838 -- buffer in type_new() should not be static. Moved by Guido van Rossum · 22 years ago
  40. 323a9cf PyType_Ready(): initialize the base class a bit earlier, so that if we by Guido van Rossum · 22 years ago
  41. 5dc2a37 Allow more docstrings to be removed during compilation by Neal Norwitz · 22 years ago
  42. d47714a Allow docstrings to be removed during compilation for *SLOT macro and friends by Neal Norwitz · 22 years ago
  43. 858e34f Allow docstrings to be removed during compilation by Neal Norwitz · 22 years ago
  44. 3747a0f Fix MSVC warnings. by Guido van Rossum · 22 years ago
  45. ad47da0 Refactor how __dict__ and __weakref__ interact with __slots__. by Guido van Rossum · 22 years ago
  46. 40af889 Disallow class assignment completely unless both old and new are heap by Guido van Rossum · 22 years ago
  47. 721f62e Major speedup for new-style class creation. Turns out there was some by Guido van Rossum · 22 years ago
  48. 7bed213 Significant speedup in new-style object creation: in slot_tp_new(), by Guido van Rossum · 22 years ago
  49. febd61d A modest speedup of object deallocation. call_finalizer() did rather by Guido van Rossum · 22 years ago
  50. 0906e07 Fix a subtle bug in the trashcan code I added yesterday to subtype_dealloc(). by Guido van Rossum · 22 years ago
  51. 22b1387 Fix SF bug 574207 (chained __slots__ dealloc segfault). by Guido van Rossum · 22 years ago
  52. 0dbab4c5 SF patch 588728 (Nathan Srebro). by Guido van Rossum · 22 years ago
  53. cee5ca0 SF patch #587889, fix memory leak of tp_doc by Neal Norwitz · 22 years ago
  54. 73a088e Don't be so hasty. If PyInt_AsLong() raises an error, don't set ValueError. by Jeremy Hylton · 22 years ago
  55. f20fcf9 Complain if __len__() returns < 0, just like classic classes. by Jeremy Hylton · 22 years ago
  56. 938ace6 staticforward bites the dust. by Jeremy Hylton · 22 years ago
  57. 719841e The object returned by tp_new() may not have a tp_init. by Jeremy Hylton · 22 years ago
  58. 03013a0 valid_identifier(): use an unsigned char* so that isalpha() will do by Guido van Rossum · 22 years ago
  59. 3459251 object.h special-build macro minefield: renamed all the new lexical by Tim Peters · 22 years ago
  60. ab5dae3 Fix SF bug 572567: Memory leak in object comparison. by Raymond Hettinger · 22 years ago
  61. 0ae0c07 SF 569257 -- Name mangle double underscored variable names in __slots__. by Raymond Hettinger · 22 years ago
  62. 6351757 Patch from SF bug 570483 (Tim Northover). by Guido van Rossum · 22 years ago
  63. 59e6c53 Inexplicably, recurse_down_subclasses() was comparing the object by Guido van Rossum · 22 years ago
  64. 14f8b4c Patch #568124: Add doc string macros. by Martin v. Löwis · 22 years ago
  65. 09638c1 Hopefully this addresses the remaining issues of SF bugs 459235 and by Guido van Rossum · 22 years ago
  66. cab0580 Undo the last chunk of the previous patch, putting back a useful by Guido van Rossum · 22 years ago
  67. a386209 In the recent python-dev thread "Bizarre new test failure", we by Guido van Rossum · 22 years ago
  68. 2309498 Three's a charm: yet another fix for SF bug 551412. Thinking again by Guido van Rossum · 22 years ago
  69. 9923ffe Address SF bug 519621: slots weren't traversed by GC. by Guido van Rossum · 22 years ago
  70. b65c65b Address the residual issue with the fix for SF 551412 in by Guido van Rossum · 22 years ago
  71. 9fc8a29 Fix for SF bug 551412. When _PyType_Lookup() is called on a type by Guido van Rossum · 22 years ago
  72. 9ee4b94 Add a safeguard against setting the class to something with a by Guido van Rossum · 22 years ago
  73. 2b85897 type_get_doc(): Squash compiler wng about incompatible ptr types. by Tim Peters · 22 years ago
  74. 6ca7d41 SF bug 542984. by Guido van Rossum · 22 years ago
  75. b6b8942 SF bug #541883 (Vincent Fiack). by Guido van Rossum · 22 years ago
  76. 09a2ae5 Change signature of _PyObject_GC_Malloc to match PyObject_MALLOC. by Neil Schemenauer · 22 years ago
  77. 0986d82 - A type can now inherit its metatype from its base type. Previously, by Guido van Rossum · 22 years ago
  78. 8ace1ab - Changed new-style class instantiation so that when C's __new__ by Guido van Rossum · 22 years ago
  79. 6b8ab74 Don't inherit tp_new! This is a retraction of half of the previous by Guido van Rossum · 22 years ago
  80. cc8fe04 Inherit tp_new and tp_is_gc. by Guido van Rossum · 22 years ago
  81. c334df5 A much revised version of SF patch 514662, by Naofumi Honda. This by Guido van Rossum · 22 years ago
  82. bfc2e5e Clarifying code rearrangement and comments by David Abrahams. I've by Guido van Rossum · 22 years ago
  83. d464107 Fold some long lines. Delete blank initial line. by Guido van Rossum · 22 years ago
  84. 155db9a SF patch 537536 by Phillip J. Eby, fix for SF bug 535444, super() by Guido van Rossum · 22 years ago
  85. 93c1e23 Use METH_VARARGS rather than METH_OLDARGS implicitly (args are ignored) by Neal Norwitz · 22 years ago
  86. 7bf9715 Introduce two new flag bits that can be set in a PyMethodDef method by Fred Drake · 22 years ago
  87. 2400831 SF patch 530070: pydoc regression, from Martin and Guido. by Tim Peters · 22 years ago
  88. 0628dcf "Fix" for SF bug #520644: __slots__ are not pickled. by Guido van Rossum · 22 years ago
  89. dfce3bf Bugfix candidate. Adapter from SF patch 528038; fixes SF bug 527816. by Guido van Rossum · 22 years ago
  90. f9bd6b0 Allow __doc__ to be of arbitrary type. Patch by James Henstridge, by Martin v. Löwis · 22 years ago
  91. f884b74 - PyType_Ready(): Initialize the ob_type field to &PyType_Type if it's by Guido van Rossum · 23 years ago
  92. e54616c (Merge into trunk.) by Guido van Rossum · 23 years ago
  93. 14227b4 The previous checkin to clear __slots__ variables did a little bit of by Guido van Rossum · 23 years ago
  94. 33bab01 Fix SF bug #489581: __slots__ leak. by Guido van Rossum · 23 years ago
  95. d331cb5 At the PythonLabs meeting someone mentioned it would make Jim really by Guido van Rossum · 23 years ago
  96. 64b206c Fix SF bug #486144: Uninitialized __slot__ vrbl is None. by Guido van Rossum · 23 years ago
  97. 5b443c6 Address SF patch #480716 as well as related issues. by Guido van Rossum · 23 years ago
  98. 1d5b3f2 Fix for SF bug #485678. by Guido van Rossum · 23 years ago
  99. a91e964 Changing diapers reminded Guido that he wanted to allow for some measure by Tim Peters · 23 years ago
  100. a427a2b Rename "dictionary" (type and constructor) to "dict". by Tim Peters · 23 years ago