1. fc57ccb SF bug [#470040] ParseTuple t# vs subclasses. by Tim Peters · 23 years ago
  2. 875eeaa Another step in the right direction: when a new class's attribute by Guido van Rossum · 23 years ago
  3. 12b22ff Add a bunch of tests for a list subclass that would have caught the by Guido van Rossum · 23 years ago
  4. 0eb2a6e It turned out not so difficult to support old-style numbers (those by Guido van Rossum · 23 years ago
  5. 4570455 Change all occurrences of verify(x == y) into vereq(x, y), since when by Guido van Rossum · 23 years ago
  6. 4fb1fe8 class_docstrings(): The new-style class tests should use new-style by Tim Peters · 23 years ago
  7. 2f93e28 SF bug [#467331] ClassType.__doc__ always None. by Tim Peters · 23 years ago
  8. 4a5a2bc dynamics(): add a dummy __getattr__ method to the C class so that the by Guido van Rossum · 23 years ago
  9. fe1fd0e pickles(): by Guido van Rossum · 23 years ago
  10. 751c4c8 Add a few ``__dynamic__ = 0'' lines in classes that need to preserve by Guido van Rossum · 23 years ago
  11. 4bb1e36 It's a fact: for binary operators, *under certain circumstances*, by Guido van Rossum · 23 years ago
  12. 6cef6d5 Changes to copy() and deepcopy() in copy.py to support __reduce__ as a by Guido van Rossum · 23 years ago
  13. 3926a63 - Provisional support for pickling new-style objects. (*) by Guido van Rossum · 23 years ago
  14. 5c294fb Make __class__ assignment possible, when the object structures are the by Guido van Rossum · 23 years ago
  15. 66c1a52 Make properties discoverable from Python: by Tim Peters · 23 years ago
  16. 3d45d8f Another comparison patch-up: comparing a type with a dynamic metatype by Guido van Rossum · 23 years ago
  17. 2205642 Do the same thing to complex that I did to str: the rich comparison by Guido van Rossum · 23 years ago
  18. bb77e68 Change string comparison so that it applies even when one (or both) by Guido van Rossum · 23 years ago
  19. ff0e6d6 Fix the baffler that Tim reported: sometimes the repr() of an object by Guido van Rossum · 23 years ago
  20. 19c1cd5 Add the __getattr__ hook back. The rules are now: by Guido van Rossum · 23 years ago
  21. 867a8d2 Change the name of the __getattr__ special method for new-style by Guido van Rossum · 23 years ago
  22. 8b9cc7e Add a small test to verify that member and getset descriptors now have by Guido van Rossum · 23 years ago
  23. a56b42b Change testdescr.py to use the test_main() approach. by Guido van Rossum · 23 years ago
  24. 1952e38 Add additional coercion support for "self subtypes" to int, long, by Guido van Rossum · 23 years ago
  25. d5d8e4a Enable two checks for comparing a complex to a complex subtype instance. by Guido van Rossum · 23 years ago
  26. 50fda6c Enable some comparison tests that failed before. Still having problems by Tim Peters · 23 years ago
  27. 0639f59 Add a similar test for rich comparisons. by Guido van Rossum · 23 years ago
  28. ab3b034 Hopefully fix 3-way comparisons. This unfortunately adds yet another by Guido van Rossum · 23 years ago
  29. 843daa8 Test for the safety check in wrap_cmpfunc(). by Guido van Rossum · 23 years ago
  30. 305b585 PyObject_Dir(): Merge in __members__ and __methods__ too (if they exist, by Tim Peters · 23 years ago
  31. e000782 Since we had a bug with multiplication of dynamic long subclasses, add a by Tim Peters · 23 years ago
  32. 7e35d57 A fix for SF bug #461546 (bug in long_mul). by Guido van Rossum · 23 years ago
  33. 0ab085c Changed the dict implementation to take "string shortcuts" only when by Tim Peters · 23 years ago
  34. 8fa4567 Now that file objects are subclassable, you can get at the file constructor by Tim Peters · 23 years ago
  35. 561f899 Use the keyword form of file() instead of open() to create TESTFN. by Tim Peters · 23 years ago
  36. 808b94e Added simple tests of keyword arguments in the basic type constructors. by Tim Peters · 23 years ago
  37. 3f996e7 type_call(): Change in policy. The keyword args (if any) are now passed by Tim Peters · 23 years ago
  38. 59c9a64 SF bug [#460467] file objects should be subclassable. by Tim Peters · 23 years ago
  39. 4f467e8 Added subclass equality tests. Almost all of these are commented out now, by Tim Peters · 23 years ago
  40. 2400fa4 Again perhaps the end of [#460020] bug or feature: unicode() and subclasses. by Tim Peters · 23 years ago
  41. 111f609 If interning an instance of a string subclass, intern a real string object by Tim Peters · 23 years ago
  42. af90b3e str_subtype_new, unicode_subtype_new: by Tim Peters · 23 years ago
  43. 7a29bd5 More on bug 460020: disable many optimizations of unicode subclasses. by Tim Peters · 23 years ago
  44. 8fa5dd0 More bug 460020: lots of string optimizations inhibited for string by Tim Peters · 23 years ago
  45. 69c2de3 More bug 460020. Disable a number of long optimizations for long subclasses. by Tim Peters · 23 years ago
  46. 0280cf7 More bug 460020: when F is a subclass of float, disable the unary plus by Tim Peters · 23 years ago
  47. 73a1dfe More bug 460020. When I is a subclass of int, disable the +I(whatever), by Tim Peters · 23 years ago
  48. 7b07a41 The endless 460020 bug. by Tim Peters · 23 years ago
  49. 779ce4a Restore the comparisons that I initially put in the test but that Tim by Guido van Rossum · 23 years ago
  50. 78e0fc7 Possibly the end of SF [#460020] bug or feature: unicode() and subclasses. by Tim Peters · 23 years ago
  51. c636f56 Added another test of str() applied to a string subclass instance, by Tim Peters · 23 years ago
  52. 5a49ade More on SF bug [#460020] bug or feature: unicode() and subclasses. by Tim Peters · 23 years ago
  53. 4c3a0a3 More on SF bug [#460020] bug or feature: unicode() and subclasses. by Tim Peters · 23 years ago
  54. caaff8d test_dir(): Add tests for dir(i) where i is a module subclass. by Tim Peters · 23 years ago
  55. 7a50f25 More for SF bug [#460020] bug or feature: unicode() and subclasses by Tim Peters · 23 years ago
  56. 64b5ce3 SF bug #460020: bug or feature: unicode() and subclasses. by Tim Peters · 23 years ago
  57. 8bce4ac Rename 'getset' to 'property'. by Guido van Rossum · 23 years ago
  58. 37a309d builtin_dir(): Treat classic classes like types. Use PyDict_Keys instead by Tim Peters · 23 years ago
  59. 5d2b77c Make dir() wordier (see the new docstring). The new behavior is a mixed by Tim Peters · 23 years ago
  60. 25786c0 Make dictionary() a real constructor. Accepts at most one argument, "a by Tim Peters · 23 years ago
  61. bfa47b0 Correct name mangling algorithm, and add a comment. by Guido van Rossum · 23 years ago
  62. 91ee798 metaclass(): add some more examples of metaclasses, including one by Guido van Rossum · 23 years ago
  63. caa9f43 Add testcases for inheritance from tricky builtins (numbers, strings, tuples). by Guido van Rossum · 23 years ago
  64. 8aea0cc Now that int is subclassable, have to change a test that tests for by Guido van Rossum · 23 years ago
  65. ce129a5 Fix the test again due to fewer calls to __getattr__. by Guido van Rossum · 23 years ago
  66. a5be8ed Fix one test to reflect the change in method lookup policy. by Guido van Rossum · 23 years ago
  67. 9881fc1 supers(): typo -- "if verify" should be "if verbose". by Guido van Rossum · 23 years ago
  68. c4a1880 Add test suite for super(). by Guido van Rossum · 23 years ago
  69. 76f0cb8 Add a test for the new getset type. by Guido van Rossum · 23 years ago
  70. 65d5d7f Add test for weak references. by Guido van Rossum · 23 years ago
  71. 84a79a8 classic(),metods(): add tests to verify that a bound method without a by Guido van Rossum · 23 years ago
  72. 9301876 classic(), methods(): add another test relating to unbound methods: by Guido van Rossum · 23 years ago
  73. 7e1ff69 Add early binding of methods to the 2nd metaclass example. by Guido van Rossum · 23 years ago
  74. 309b566 metaclass(): add tests for metaclasses written in Python: one that by Guido van Rossum · 23 years ago
  75. 501c7c7 classobject.c:instancemethod_descr_get(): when a bound method is by Guido van Rossum · 23 years ago
  76. 4d2dded test_descr started breaking in yet another way in the same place. by Tim Peters · 23 years ago
  77. 63a8d69 Repair some accidents causing Windows failures: by Tim Peters · 23 years ago
  78. a4ff6ab Add tests for overridable operators that have default interpretations by Guido van Rossum · 23 years ago
  79. b5a136b Add a test to verify that bound methods work correctly. by Guido van Rossum · 23 years ago
  80. 80e3675 Add a test for a weird bug I just discovered: a dynamic subclass by Guido van Rossum · 23 years ago
  81. d307740 - Expand test for dynamic objects. by Guido van Rossum · 23 years ago
  82. 9d4fe42 dynamics(): add tests for dynamic *instances* (which are currently by Guido van Rossum · 23 years ago
  83. e45763a Add test for SF bug #442833 (multiple inheritance). by Guido van Rossum · 23 years ago
  84. 6d94627 Allow AttributeError as well as TypeError for attribute-less objects. by Guido van Rossum · 23 years ago
  85. 3720261 Restore the test for 'object' that I removed when object was by Guido van Rossum · 23 years ago
  86. 15d86c6 Remove the test for the 'object' type -- it can no longer be by Guido van Rossum · 23 years ago
  87. 6d6c1a3 Merge of descr-branch back into trunk. by Tim Peters · 23 years ago