1. a48cb8f Fix from SF patch 565085: copy._reduction doesn't __setstate__. 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. 1bdd9b0 Test repair now that module.__init__ requires a name and initializes by Guido van Rossum · 22 years ago
  4. 155a34d The warning filter was ineffective when this module was invoked as a script. by Guido van Rossum · 22 years ago
  5. 9fc8a29 Fix for SF bug 551412. When _PyType_Lookup() is called on a type by Guido van Rossum · 22 years ago
  6. 4402241 Jim Fulton reported a segfault in dir(). A heavily proxied object by Guido van Rossum · 22 years ago
  7. afb2c80 ceval.c/do_raise(): Tighten the test to disallow raising an instance of by Tim Peters · 22 years ago
  8. d99b3e7 SF bug 542984. by Guido van Rossum · 22 years ago
  9. e8fc640 SF bug 544647. by Guido van Rossum · 22 years ago
  10. 4d9b466 Fewer deprecation warnings. by Tim Peters · 22 years ago
  11. b6b8942 SF bug #541883 (Vincent Fiack). by Guido van Rossum · 22 years ago
  12. 8ace1ab - Changed new-style class instantiation so that when C's __new__ by Guido van Rossum · 22 years ago
  13. 77f6a65 Add the 'bool' type and its values 'False' and 'True', as described in by Guido van Rossum · 22 years ago
  14. 155db9a SF patch 537536 by Phillip J. Eby, fix for SF bug 535444, super() by Guido van Rossum · 22 years ago
  15. b1295da There is no TestError, use TestFailed appropriately by Neal Norwitz · 22 years ago
  16. f841aa6 Add a simple test of the METH_CLASS and METH_STATIC flags for type methods. by Fred Drake · 22 years ago
  17. dbd2d25 Add tests for the iterkeys, itervalues and iteritems by Walter Dörwald · 22 years ago
  18. 7e30548 Fix for SF bug 528132 (Armin Rigo): classmethod().__get__() segfault by Guido van Rossum · 22 years ago
  19. 8c84255 "Fix" for SF bug #520644: __slots__ are not pickled. by Guido van Rossum · 22 years ago
  20. d703567 Test for the fix I just checked in to moduleobject.c. by Guido van Rossum · 22 years ago
  21. 1af5e35 Fix typo by Neal Norwitz · 22 years ago
  22. c9e9e40 Add a check that SF bug 516727 is really fixed. by Guido van Rossum · 22 years ago
  23. 15d529a Bugfix candidate. Adapter from SF patch 528038; fixes SF bug 527816. by Guido van Rossum · 22 years ago
  24. 5329cdb _PyLong_Copy(): was creating a copy of the absolute value, but should by Tim Peters · 22 years ago
  25. 2eb0b87 SF patch 514641 (Naofumi Honda) - Negative ob_size of LongObjects by Guido van Rossum · 22 years ago
  26. 2764a3a Fix for SF bug ##497426: can't deepcopy recursive new objects by Guido van Rossum · 23 years ago
  27. e54616c (Merge into trunk.) by Guido van Rossum · 23 years ago
  28. 29d2606 Additional coverage tests by Neil Norwitz. (SF patch #491418, #491420, #491421.) by Guido van Rossum · 23 years ago
  29. 3caca23 SF bug #488514: -Qnew needs work by Tim Peters · 23 years ago
  30. 33bab01 Fix SF bug #489581: __slots__ leak. by Guido van Rossum · 23 years ago
  31. d331cb5 At the PythonLabs meeting someone mentioned it would make Jim really by Guido van Rossum · 23 years ago
  32. 6b70599 Fix SF bug #486144: Uninitialized __slot__ vrbl is None. by Guido van Rossum · 23 years ago
  33. dbb53d9 Fix of SF bug #475877 (Mutable subtype instances are hashable). by Guido van Rossum · 23 years ago
  34. 5b443c6 Address SF patch #480716 as well as related issues. by Guido van Rossum · 23 years ago
  35. 90c4514 - Change all remaining assertions into verify() and vereq() calls. by Guido van Rossum · 23 years ago
  36. 144b98d More simple test cases for mixed classic+new multiple inheritance. by Tim Peters · 23 years ago
  37. a91e964 Changing diapers reminded Guido that he wanted to allow for some measure by Tim Peters · 23 years ago
  38. c2fe618 Fix bad bug in structseq slicing (NULL pointers in result). Reported by by Tim Peters · 23 years ago
  39. 9e6a399 To cover a recent checkin, added a test to ensure dir(None) == dir(Ellipsis). by Tim Peters · 23 years ago
  40. fe677e2 Just changed some continued-line indentation to read better, due to by Tim Peters · 23 years ago
  41. ed87ad8 Minimal test for __del__ hook. by Guido van Rossum · 23 years ago
  42. a427a2b Rename "dictionary" (type and constructor) to "dict". by Tim Peters · 23 years ago
  43. 4d85953 dictionary() constructor: by Tim Peters · 23 years ago
  44. 9fda73c dict_constructor(): The last test was passing for the wrong reason (it by Tim Peters · 23 years ago
  45. 1fc240e Generalize dictionary() to accept a sequence of 2-sequences. At the by Tim Peters · 23 years ago
  46. 6661be3 Allow assignment to newinstance.__dict__. by Guido van Rossum · 23 years ago
  47. 4bf018b Fixed denial-of-weak-ref-support test; Jeremy changed the error message by Fred Drake · 23 years ago
  48. c8e5645 Methods of built-in types now properly check for keyword arguments by Guido van Rossum · 23 years ago
  49. f76de62 Fix SF bug #472234: type(obj) calls type->tp_init (Roeland Rengelink) by Guido van Rossum · 23 years ago
  50. c993315 SF bug [#468061] __str__ ignored in str subclass. by Tim Peters · 23 years ago
  51. 2f3ca6e Completely get rid of __dynamic__ and the corresponding by Guido van Rossum · 23 years ago
  52. fc57ccb SF bug [#470040] ParseTuple t# vs subclasses. by Tim Peters · 23 years ago
  53. 875eeaa Another step in the right direction: when a new class's attribute by Guido van Rossum · 23 years ago
  54. 12b22ff Add a bunch of tests for a list subclass that would have caught the by Guido van Rossum · 23 years ago
  55. 0eb2a6e It turned out not so difficult to support old-style numbers (those by Guido van Rossum · 23 years ago
  56. 4570455 Change all occurrences of verify(x == y) into vereq(x, y), since when by Guido van Rossum · 23 years ago
  57. 4fb1fe8 class_docstrings(): The new-style class tests should use new-style by Tim Peters · 23 years ago
  58. 2f93e28 SF bug [#467331] ClassType.__doc__ always None. by Tim Peters · 23 years ago
  59. 4a5a2bc dynamics(): add a dummy __getattr__ method to the C class so that the by Guido van Rossum · 23 years ago
  60. fe1fd0e pickles(): by Guido van Rossum · 23 years ago
  61. 751c4c8 Add a few ``__dynamic__ = 0'' lines in classes that need to preserve by Guido van Rossum · 23 years ago
  62. 4bb1e36 It's a fact: for binary operators, *under certain circumstances*, by Guido van Rossum · 23 years ago
  63. 6cef6d5 Changes to copy() and deepcopy() in copy.py to support __reduce__ as a by Guido van Rossum · 23 years ago
  64. 3926a63 - Provisional support for pickling new-style objects. (*) by Guido van Rossum · 23 years ago
  65. 5c294fb Make __class__ assignment possible, when the object structures are the by Guido van Rossum · 23 years ago
  66. 66c1a52 Make properties discoverable from Python: by Tim Peters · 23 years ago
  67. 3d45d8f Another comparison patch-up: comparing a type with a dynamic metatype by Guido van Rossum · 23 years ago
  68. 2205642 Do the same thing to complex that I did to str: the rich comparison by Guido van Rossum · 23 years ago
  69. bb77e68 Change string comparison so that it applies even when one (or both) by Guido van Rossum · 23 years ago
  70. ff0e6d6 Fix the baffler that Tim reported: sometimes the repr() of an object by Guido van Rossum · 23 years ago
  71. 19c1cd5 Add the __getattr__ hook back. The rules are now: by Guido van Rossum · 23 years ago
  72. 867a8d2 Change the name of the __getattr__ special method for new-style by Guido van Rossum · 23 years ago
  73. 8b9cc7e Add a small test to verify that member and getset descriptors now have by Guido van Rossum · 23 years ago
  74. a56b42b Change testdescr.py to use the test_main() approach. by Guido van Rossum · 23 years ago
  75. 1952e38 Add additional coercion support for "self subtypes" to int, long, by Guido van Rossum · 23 years ago
  76. d5d8e4a Enable two checks for comparing a complex to a complex subtype instance. by Guido van Rossum · 23 years ago
  77. 50fda6c Enable some comparison tests that failed before. Still having problems by Tim Peters · 23 years ago
  78. 0639f59 Add a similar test for rich comparisons. by Guido van Rossum · 23 years ago
  79. ab3b034 Hopefully fix 3-way comparisons. This unfortunately adds yet another by Guido van Rossum · 23 years ago
  80. 843daa8 Test for the safety check in wrap_cmpfunc(). by Guido van Rossum · 23 years ago
  81. 305b585 PyObject_Dir(): Merge in __members__ and __methods__ too (if they exist, by Tim Peters · 23 years ago
  82. e000782 Since we had a bug with multiplication of dynamic long subclasses, add a by Tim Peters · 23 years ago
  83. 7e35d57 A fix for SF bug #461546 (bug in long_mul). by Guido van Rossum · 23 years ago
  84. 0ab085c Changed the dict implementation to take "string shortcuts" only when by Tim Peters · 23 years ago
  85. 8fa4567 Now that file objects are subclassable, you can get at the file constructor by Tim Peters · 23 years ago
  86. 561f899 Use the keyword form of file() instead of open() to create TESTFN. by Tim Peters · 23 years ago
  87. 808b94e Added simple tests of keyword arguments in the basic type constructors. by Tim Peters · 23 years ago
  88. 3f996e7 type_call(): Change in policy. The keyword args (if any) are now passed by Tim Peters · 23 years ago
  89. 59c9a64 SF bug [#460467] file objects should be subclassable. by Tim Peters · 23 years ago
  90. 4f467e8 Added subclass equality tests. Almost all of these are commented out now, by Tim Peters · 23 years ago
  91. 2400fa4 Again perhaps the end of [#460020] bug or feature: unicode() and subclasses. by Tim Peters · 23 years ago
  92. 111f609 If interning an instance of a string subclass, intern a real string object by Tim Peters · 23 years ago
  93. af90b3e str_subtype_new, unicode_subtype_new: by Tim Peters · 23 years ago
  94. 7a29bd5 More on bug 460020: disable many optimizations of unicode subclasses. by Tim Peters · 23 years ago
  95. 8fa5dd0 More bug 460020: lots of string optimizations inhibited for string by Tim Peters · 23 years ago
  96. 69c2de3 More bug 460020. Disable a number of long optimizations for long subclasses. by Tim Peters · 23 years ago
  97. 0280cf7 More bug 460020: when F is a subclass of float, disable the unary plus by Tim Peters · 23 years ago
  98. 73a1dfe More bug 460020. When I is a subclass of int, disable the +I(whatever), by Tim Peters · 23 years ago
  99. 7b07a41 The endless 460020 bug. by Tim Peters · 23 years ago
  100. 779ce4a Restore the comparisons that I initially put in the test but that Tim by Guido van Rossum · 23 years ago