1. ff365c9 Get rid of gcc warning. by Hye-Shik Chang · 20 years ago
  2. 91a968a Ensure super() lookup of descriptor from classmethod works (SF #743627) by Phillip J. Eby · 20 years ago
  3. 8a1a594 Fixed a bug in object.__reduce_ex__ (reduce_2) when using protocol by Jim Fulton · 20 years ago
  4. 6a8bbdb Improve argument checking speed. by Raymond Hettinger · 21 years ago
  5. 8f5cdaa * Added a new method flag, METH_COEXIST. by Raymond Hettinger · 21 years ago
  6. 0bd743c subtype_dealloc(): Simplified overly contorted retracking logic. With by Tim Peters · 21 years ago
  7. f7f9e99 subtype_dealloc(): A more complete fix for critical bug 840829 + by Tim Peters · 21 years ago
  8. add09b4 SF bug 840829: weakref callbacks and gc corrupt memory. by Tim Peters · 21 years ago
  9. f0dfc7a Fix a bunch of typos in documentation, docstrings and comments. by Walter Dörwald · 21 years ago
  10. 8ae4689 Simplify and speedup uses of Py_BuildValue(): by Raymond Hettinger · 21 years ago
  11. 56bb16f Use the simpler and faster PyArg_UnpackTuple() instead of by Raymond Hettinger · 21 years ago
  12. f34f264 SF bug #820397: __nonzero__() returns 1/0 by Raymond Hettinger · 21 years ago
  13. 22c3dda Fix leak introduced by previous typeobject.c checkin. by Guido van Rossum · 21 years ago
  14. 02c58f8 SF patch #820195 by Wojtek Walczak (gminick at users.sourceforge.net): by Guido van Rossum · 21 years ago
  15. b2c7de4 Fix for by Michael W. Hudson · 21 years ago
  16. a6a277d /* XXX From here until type is allocated, "return NULL" leaks bases! */ by Michael W. Hudson · 21 years ago
  17. e723e45 Repair refcounting on error return from type_set_bases. by Michael W. Hudson · 21 years ago
  18. f75d9fc Remove stray comments. by Jeremy Hylton · 21 years ago
  19. 1c7a0ea Remove unnecessary check in tests for slots allowed. by Jeremy Hylton · 21 years ago
  20. 3e3159c Require that __nonzero__() return a bool or exactly an int. by Jeremy Hylton · 21 years ago
  21. 090a349 Check return type of __nonzero__() method. by Jeremy Hylton · 21 years ago
  22. 59195fd - SF patch 751998 fixes an unwanted side effect of the previous fix by Guido van Rossum · 21 years ago
  23. 10147f7 Fixed a comment. by Brett Cannon · 21 years ago
  24. e2fdc61 Fix SF #749831, copy raises SystemError when getstate raises exception by Neal Norwitz · 21 years ago
  25. 1987c66 Fix for SF 742911. We now clear the weakrefs *before* calling __del__ by Guido van Rossum · 21 years ago
  26. 3cfe754 PyType_Ready(): Complain if the type is a base type, and gc'able, and by Tim Peters · 21 years ago
  27. be67d87 Fixing the previous patch to have the changes be to the proper docstrings. by Brett Cannon · 21 years ago
  28. 154da9b Fix docstrings for __(get|set|del)slice__ to mention that negative indices are not supported. by Brett Cannon · 21 years ago
  29. a94568a Patch #734231: Update RiscOS support. In particular, correct by Martin v. Löwis · 21 years ago
  30. 636688d Improve the message about metatype/metaclass conflicts. by Guido van Rossum · 21 years ago
  31. 6cc5bb6 Sigh. The crucial change was still missing from the previous checkin. :-( by Guido van Rossum · 21 years ago
  32. 76ba09f - super() no longer ignores data descriptors, except __class__. See by Guido van Rossum · 21 years ago
  33. 19a02ba Fix three (!) object leaks in the code for assignment to __bases__. by Guido van Rossum · 21 years ago
  34. 52b2705 Ouch, it's Carlo Verre, not Verre Carlo. by Guido van Rossum · 21 years ago
  35. 4dcdb78 Close off the "Verre Carlo hack" as discussed on python-dev. by Guido van Rossum · 21 years ago
  36. 2fd02eb super_getattro(): kill some dead code; explain a mystery. by Guido van Rossum · 21 years ago
  37. d06483c Missing DECREF. by Jeremy Hylton · 21 years ago
  38. f394df4 SF bug #699934: Obscure error message by Raymond Hettinger · 21 years ago
  39. 8d24ee9 Refactoring: rename update_these_slots() into update_subclasses() and by Guido van Rossum · 21 years ago
  40. 7571a0f Improved new Py_TRACE_REFS gimmicks. by Tim Peters · 21 years ago
  41. bf9b244 slot_sq_contains(): This leaked a reference to the result of calling by Tim Peters · 21 years ago
  42. 36eb4df Refactored some of the Py_TRACE_REFS code. New private API function by Tim Peters · 21 years ago
  43. 83245b5 SF bug #699934: Obscure error message by Raymond Hettinger · 21 years ago
  44. e5c691a - The extended type structure used for heap types (new-style by Guido van Rossum · 21 years ago
  45. 036f999 Implementing the salient parts of __reduce_ex__ in C. by Guido van Rossum · 21 years ago
  46. c53f009 Introducing __reduce_ex__, which is called with a protocol number argument by Guido van Rossum · 21 years ago
  47. 97e5ff5 Removed unreferenced label. by Tim Peters · 21 years ago
  48. 8e80a72 The recent changes to super(), in particular supercheck(), broke when by Guido van Rossum · 21 years ago
  49. 298e421 SF patch #685738 by Michael Stone. by Guido van Rossum · 21 years ago
  50. a89d10e Implement another useful feature for proxies: in super(X, x), x may by Guido van Rossum · 21 years ago
  51. eea4718 Fix from SF #681367: inherit tp_as_buffer. This only applies to C by Guido van Rossum · 21 years ago
  52. 9af48ff Inline create_specialmethod() -- since METH_CLASS is done differently by Guido van Rossum · 21 years ago
  53. 82ed25c Add basic arg sanity checking to wrap_descr_get(). This is called by Guido van Rossum · 21 years ago
  54. 3f50cdc Get rid of the "bozo" __getstate__ that was inserted when __slots__ by Guido van Rossum · 21 years ago
  55. c9172d3 Comment typo fix by Andrew M. Kuchling · 21 years ago
  56. ce8bcd8 Fix for SF #668433. I'm not explaining it here; ample comments are in the code. by Guido van Rossum · 21 years ago
  57. 373c741 Fix for SF bug #642358: only provide a new with a __dict__ or by Guido van Rossum · 22 years ago
  58. cd11880 Add a refinement to SLOT1BINFULL() that fixes the problem reported in by Guido van Rossum · 22 years ago
  59. 768158c Fix an out-of-bound index in pmerge() discovered by Zooko (SF bug by Guido van Rossum · 22 years ago
  60. a828586 Punctuation fix. by Raymond Hettinger · 22 years ago
  61. 3bbc0ee Tighten the tests for assignment to __bases__: disallow empty tuple. by Guido van Rossum · 22 years ago
  62. bca1cbc SF 548651: Fix the METH_CLASS implementation. by Tim Peters · 22 years ago
  63. ea7f75d slot_nb_nonzero(): Another leak uncovered by the sandbox datetime by Tim Peters · 22 years ago
  64. 61ce0a9 slot_tp_hash(): In the normal path, this leaked a reference to the by Tim Peters · 22 years ago
  65. ade8c8b Nudge getting __module__ and __name__ for new-style classes so that by Michael W. Hudson · 22 years ago
  66. 7e7c00d I don't know why staring at the email to python-checkins made me by Michael W. Hudson · 22 years ago
  67. 586da8f Readjustments to the way we cope with exceptions from subclasses' by Michael W. Hudson · 22 years ago
  68. caf17be I had the inheritance cycle stuff backwards. Oops! by Michael W. Hudson · 22 years ago
  69. ac74f5d Initialize a variable. Hope this makes things work for Guido. by Michael W. Hudson · 22 years ago
  70. 98bbc49 This is my patch: by Michael W. Hudson · 22 years ago
  71. 98f3373 A tweaked version of Jeremy's patch #642489, to produce better error by Guido van Rossum · 22 years ago
  72. 9a6b8d8 Repaired illegal syntax most compilers probably let slide (but MSVC by Tim Peters · 22 years ago
  73. 1f12131 Use the new C3 MRO algorithm, implemented by Samuele Pedroni (SF patch by Guido van Rossum · 22 years ago
  74. 673cd82 Fix SF # 624982, Potential AV in slot_sq_item, by Greg Chapman by Neal Norwitz · 22 years ago
  75. 3930bc3 Sigh. That wasn't a memory leak, that was Guido committing before by Guido van Rossum · 22 years ago
  76. 72297bb Fix memory leak in add_subclass() found by NealN with valgrind. Will backport. by Guido van Rossum · 22 years ago
  77. 6e5680f For some reason (probably cut and paste), __ipow__ for new-style by Guido van Rossum · 22 years ago
  78. 13b1a5c Don't drop old slots if _unicode_to_string did not change anything. by Martin v. Löwis · 22 years ago
  79. d919a59 Allow Unicode strings in __slots__, converting them to byte strings. by Martin v. Löwis · 22 years ago
  80. 84b2bed Squash a few calls to the hideously expensive PyObject_CallObject(o,a) by Guido van Rossum · 22 years ago
  81. 8e82920 Fix SF bug 595838 -- buffer in type_new() should not be static. Moved by Guido van Rossum · 22 years ago
  82. 323a9cf PyType_Ready(): initialize the base class a bit earlier, so that if we by Guido van Rossum · 22 years ago
  83. 5dc2a37 Allow more docstrings to be removed during compilation by Neal Norwitz · 22 years ago
  84. d47714a Allow docstrings to be removed during compilation for *SLOT macro and friends by Neal Norwitz · 22 years ago
  85. 858e34f Allow docstrings to be removed during compilation by Neal Norwitz · 22 years ago
  86. 3747a0f Fix MSVC warnings. by Guido van Rossum · 22 years ago
  87. ad47da0 Refactor how __dict__ and __weakref__ interact with __slots__. by Guido van Rossum · 22 years ago
  88. 40af889 Disallow class assignment completely unless both old and new are heap by Guido van Rossum · 22 years ago
  89. 721f62e Major speedup for new-style class creation. Turns out there was some by Guido van Rossum · 22 years ago
  90. 7bed213 Significant speedup in new-style object creation: in slot_tp_new(), by Guido van Rossum · 22 years ago
  91. febd61d A modest speedup of object deallocation. call_finalizer() did rather by Guido van Rossum · 22 years ago
  92. 0906e07 Fix a subtle bug in the trashcan code I added yesterday to subtype_dealloc(). by Guido van Rossum · 22 years ago
  93. 22b1387 Fix SF bug 574207 (chained __slots__ dealloc segfault). by Guido van Rossum · 22 years ago
  94. 0dbab4c5 SF patch 588728 (Nathan Srebro). by Guido van Rossum · 22 years ago
  95. cee5ca0 SF patch #587889, fix memory leak of tp_doc by Neal Norwitz · 22 years ago
  96. 73a088e Don't be so hasty. If PyInt_AsLong() raises an error, don't set ValueError. by Jeremy Hylton · 22 years ago
  97. f20fcf9 Complain if __len__() returns < 0, just like classic classes. by Jeremy Hylton · 22 years ago
  98. 938ace6 staticforward bites the dust. by Jeremy Hylton · 22 years ago
  99. 719841e The object returned by tp_new() may not have a tp_init. by Jeremy Hylton · 22 years ago
  100. 03013a0 valid_identifier(): use an unsigned char* so that isalpha() will do by Guido van Rossum · 22 years ago