1. de8b94c Fix SF bug #683467, 'int' ability to generate longs not inherited by Neal Norwitz · 22 years ago
  2. f631859 Add __getnewargs__ method to classes that need it. by Guido van Rossum · 22 years ago
  3. 1a99750 Fix SF bug #667147, Segmentation fault printing str subclass by Neal Norwitz · 22 years ago
  4. 373c741 Fix for SF bug #642358: only provide a new with a __dict__ or by Guido van Rossum · 22 years ago
  5. 613f24f Add a test for a feature added in rev. 2.82 of typeobject.c: by Guido van Rossum · 22 years ago
  6. 2720b0d Add some print statements in verbose mode to announce that the newest by Guido van Rossum · 22 years ago
  7. 4f37418 Disable the rexec test now that rexec is out of grace. by Guido van Rossum · 22 years ago
  8. 6578dc9 Whitespace normalization. by Tim Peters · 22 years ago
  9. 78ce6b1 Add test for SF #658106. Will backport. by Neal Norwitz · 22 years ago
  10. 3bbc0ee Tighten the tests for assignment to __bases__: disallow empty tuple. by Guido van Rossum · 22 years ago
  11. bca1cbc SF 548651: Fix the METH_CLASS implementation. by Tim Peters · 22 years ago
  12. ade8c8b2 Nudge getting __module__ and __name__ for new-style classes so that by Michael W. Hudson · 22 years ago
  13. 7e7c00d I don't know why staring at the email to python-checkins made me by Michael W. Hudson · 22 years ago
  14. 586da8f Readjustments to the way we cope with exceptions from subclasses' by Michael W. Hudson · 22 years ago
  15. caf17be I had the inheritance cycle stuff backwards. Oops! by Michael W. Hudson · 22 years ago
  16. a01fa26 The MRO conflict error message depends on dictionary hash order. by Guido van Rossum · 22 years ago
  17. 98bbc49 This is my patch: by Michael W. Hudson · 22 years ago
  18. d32047f A tweaked version of Jeremy's patch #642489, to produce better error by Guido van Rossum · 22 years ago
  19. ca2953e Remove duplicate test by Neal Norwitz · 22 years ago
  20. a797d81 Patch #642500 with slight modifications: allow keyword arguments in by Just van Rossum · 22 years ago
  21. 9a81892 Fix or disable some tests that were affected by the new C3 MRO by Guido van Rossum · 22 years ago
  22. 673cd82 Fix SF # 624982, Potential AV in slot_sq_item, by Greg Chapman by Neal Norwitz · 22 years ago
  23. 6e5680f For some reason (probably cut and paste), __ipow__ for new-style by Guido van Rossum · 22 years ago
  24. 8b1a6d6 Code by Inyeol Lee, submitted to SF bug 595350, to implement by Guido van Rossum · 22 years ago
  25. 8b056da Add tests for including __dict__ and/or __weakref__ in __slots__. by Guido van Rossum · 22 years ago
  26. f9dd0f1 Add test for SF bug # 575229, multiple inheritance w/ slots dumps core by Neal Norwitz · 22 years ago
  27. 40af889 Disallow class assignment completely unless both old and new are heap by Guido van Rossum · 22 years ago
  28. 0f5f0b8 Test for Neil's fix to correctly invoke __rmul__. by Guido van Rossum · 22 years ago
  29. 2d70246 Add testcase for SF bug 574207 (chained __slots__ dealloc segfault). by Guido van Rossum · 22 years ago
  30. 0dbab4c5 SF patch 588728 (Nathan Srebro). by Guido van Rossum · 22 years ago
  31. 04f357c Get rid of relative imports in all unittests. Now anything that by Barry Warsaw · 22 years ago
  32. 72351b9 subtype_resurrection(): Removed unused import. by Tim Peters · 22 years ago
  33. 14cb1e1 subtype_resurrection(): The test suite with -l properly reported the by Tim Peters · 22 years ago
  34. 45228ca Repaired optimistic comment in new test. by Tim Peters · 22 years ago
  35. 2484aae Added a test that provokes the hypothesized (in my last checkin comment) by Tim Peters · 22 years ago
  36. ab5dae3 Fix SF bug 572567: Memory leak in object comparison. by Raymond Hettinger · 22 years ago
  37. 0ae0c07 SF 569257 -- Name mangle double underscored variable names in __slots__. by Raymond Hettinger · 22 years ago
  38. a96b0df Patch from SF bug 570483 (Tim Northover). by Guido van Rossum · 22 years ago
  39. e7f3e24 Test for the bug in recurse_down_subclasses() that I just fixed. by Guido van Rossum · 22 years ago
  40. 09638c1 Hopefully this addresses the remaining issues of SF bugs 459235 and by Guido van Rossum · 22 years ago
  41. a48cb8f Fix from SF patch 565085: copy._reduction doesn't __setstate__. by Guido van Rossum · 22 years ago
  42. 9923ffe Address SF bug 519621: slots weren't traversed by GC. by Guido van Rossum · 22 years ago
  43. 1bdd9b0 Test repair now that module.__init__ requires a name and initializes by Guido van Rossum · 22 years ago
  44. 155a34d The warning filter was ineffective when this module was invoked as a script. by Guido van Rossum · 22 years ago
  45. 9fc8a29 Fix for SF bug 551412. When _PyType_Lookup() is called on a type by Guido van Rossum · 22 years ago
  46. 4402241 Jim Fulton reported a segfault in dir(). A heavily proxied object by Guido van Rossum · 22 years ago
  47. afb2c80 ceval.c/do_raise(): Tighten the test to disallow raising an instance of by Tim Peters · 22 years ago
  48. d99b3e7 SF bug 542984. by Guido van Rossum · 22 years ago
  49. e8fc640 SF bug 544647. by Guido van Rossum · 22 years ago
  50. 4d9b466 Fewer deprecation warnings. by Tim Peters · 22 years ago
  51. b6b8942 SF bug #541883 (Vincent Fiack). by Guido van Rossum · 22 years ago
  52. 8ace1ab - Changed new-style class instantiation so that when C's __new__ by Guido van Rossum · 22 years ago
  53. 77f6a65 Add the 'bool' type and its values 'False' and 'True', as described in by Guido van Rossum · 22 years ago
  54. 155db9a SF patch 537536 by Phillip J. Eby, fix for SF bug 535444, super() by Guido van Rossum · 22 years ago
  55. b1295da There is no TestError, use TestFailed appropriately by Neal Norwitz · 22 years ago
  56. f841aa6 Add a simple test of the METH_CLASS and METH_STATIC flags for type methods. by Fred Drake · 22 years ago
  57. dbd2d25 Add tests for the iterkeys, itervalues and iteritems by Walter Dörwald · 22 years ago
  58. 7e30548 Fix for SF bug 528132 (Armin Rigo): classmethod().__get__() segfault by Guido van Rossum · 22 years ago
  59. 8c84255 "Fix" for SF bug #520644: __slots__ are not pickled. by Guido van Rossum · 22 years ago
  60. d703567 Test for the fix I just checked in to moduleobject.c. by Guido van Rossum · 22 years ago
  61. 1af5e35 Fix typo by Neal Norwitz · 22 years ago
  62. c9e9e40 Add a check that SF bug 516727 is really fixed. by Guido van Rossum · 22 years ago
  63. 15d529a Bugfix candidate. Adapter from SF patch 528038; fixes SF bug 527816. by Guido van Rossum · 22 years ago
  64. 5329cdb _PyLong_Copy(): was creating a copy of the absolute value, but should by Tim Peters · 22 years ago
  65. 2eb0b87 SF patch 514641 (Naofumi Honda) - Negative ob_size of LongObjects by Guido van Rossum · 22 years ago
  66. 2764a3a Fix for SF bug ##497426: can't deepcopy recursive new objects by Guido van Rossum · 23 years ago
  67. e54616c (Merge into trunk.) by Guido van Rossum · 23 years ago
  68. 29d2606 Additional coverage tests by Neil Norwitz. (SF patch #491418, #491420, #491421.) by Guido van Rossum · 23 years ago
  69. 3caca23 SF bug #488514: -Qnew needs work by Tim Peters · 23 years ago
  70. 33bab01 Fix SF bug #489581: __slots__ leak. by Guido van Rossum · 23 years ago
  71. d331cb5 At the PythonLabs meeting someone mentioned it would make Jim really by Guido van Rossum · 23 years ago
  72. 6b70599 Fix SF bug #486144: Uninitialized __slot__ vrbl is None. by Guido van Rossum · 23 years ago
  73. dbb53d9 Fix of SF bug #475877 (Mutable subtype instances are hashable). by Guido van Rossum · 23 years ago
  74. 5b443c6 Address SF patch #480716 as well as related issues. by Guido van Rossum · 23 years ago
  75. 90c4514 - Change all remaining assertions into verify() and vereq() calls. by Guido van Rossum · 23 years ago
  76. 144b98d More simple test cases for mixed classic+new multiple inheritance. by Tim Peters · 23 years ago
  77. a91e964 Changing diapers reminded Guido that he wanted to allow for some measure by Tim Peters · 23 years ago
  78. c2fe618 Fix bad bug in structseq slicing (NULL pointers in result). Reported by by Tim Peters · 23 years ago
  79. 9e6a399 To cover a recent checkin, added a test to ensure dir(None) == dir(Ellipsis). by Tim Peters · 23 years ago
  80. fe677e2 Just changed some continued-line indentation to read better, due to by Tim Peters · 23 years ago
  81. ed87ad8 Minimal test for __del__ hook. by Guido van Rossum · 23 years ago
  82. a427a2b Rename "dictionary" (type and constructor) to "dict". by Tim Peters · 23 years ago
  83. 4d85953 dictionary() constructor: by Tim Peters · 23 years ago
  84. 9fda73c dict_constructor(): The last test was passing for the wrong reason (it by Tim Peters · 23 years ago
  85. 1fc240e Generalize dictionary() to accept a sequence of 2-sequences. At the by Tim Peters · 23 years ago
  86. 6661be3 Allow assignment to newinstance.__dict__. by Guido van Rossum · 23 years ago
  87. 4bf018b Fixed denial-of-weak-ref-support test; Jeremy changed the error message by Fred Drake · 23 years ago
  88. c8e5645 Methods of built-in types now properly check for keyword arguments by Guido van Rossum · 23 years ago
  89. f76de62 Fix SF bug #472234: type(obj) calls type->tp_init (Roeland Rengelink) by Guido van Rossum · 23 years ago
  90. c993315 SF bug [#468061] __str__ ignored in str subclass. by Tim Peters · 23 years ago
  91. 2f3ca6e Completely get rid of __dynamic__ and the corresponding by Guido van Rossum · 23 years ago
  92. fc57ccb SF bug [#470040] ParseTuple t# vs subclasses. by Tim Peters · 23 years ago
  93. 875eeaa Another step in the right direction: when a new class's attribute by Guido van Rossum · 23 years ago
  94. 12b22ff Add a bunch of tests for a list subclass that would have caught the by Guido van Rossum · 23 years ago
  95. 0eb2a6e It turned out not so difficult to support old-style numbers (those by Guido van Rossum · 23 years ago
  96. 4570455 Change all occurrences of verify(x == y) into vereq(x, y), since when by Guido van Rossum · 23 years ago
  97. 4fb1fe8 class_docstrings(): The new-style class tests should use new-style by Tim Peters · 23 years ago
  98. 2f93e28 SF bug [#467331] ClassType.__doc__ always None. by Tim Peters · 23 years ago
  99. 4a5a2bc dynamics(): add a dummy __getattr__ method to the C class so that the by Guido van Rossum · 23 years ago
  100. fe1fd0e pickles(): by Guido van Rossum · 23 years ago