1. 6257a7b Replace catch_warnings with check_warnings when it makes sense. Use assertRaises context manager to simplify some tests. by Florent Xicluna · 15 years ago
  2. 0762788 #7092 - Silence more py3k deprecation warnings, using test_support.check_py3k_warnings() helper. by Florent Xicluna · 15 years ago
  3. f28fd24 Issue 6292: for the moment at least, the test suite passes if run by R. David Murray · 15 years ago
  4. a4f46e1 Remove unused imports in test modules. by Georg Brandl · 16 years ago
  5. 42d5947 check type_getattro for correctness in a descriptor corner case by Benjamin Peterson · 16 years ago
  6. b0f5adc use assert[Not]IsInstance where appropriate by Ezio Melotti · 16 years ago
  7. aa98058 use assert[Not]In where appropriate by Ezio Melotti · 16 years ago
  8. 9179dab data descriptors do not override the class dictionary if __get__ is not defined by Benjamin Peterson · 16 years ago
  9. ce8e33a Reverting the Revision: 77368. I committed Flox's big patch for tests by by Senthil Kumaran · 16 years ago
  10. 3ddc435 Fixing - Issue7026 - RuntimeError: dictionary changed size during iteration. Patch by flox by Senthil Kumaran · 16 years ago
  11. ecdae19 do correct lookup of the __complex__ method by Benjamin Peterson · 16 years ago
  12. 0f02d39 check if the attribute is set before deleting it with T_OBJECT_EX (fixes #7604) by Benjamin Peterson · 16 years ago
  13. 4895af4 fix the ignoring of __cmp__ method on metaclasses #7491 by Benjamin Peterson · 16 years ago
  14. 0447cd6 Correctly restore sys.stdout in test_descr by Nick Coghlan · 16 years ago
  15. 6fcf9b5 remove the check that classmethod's argument is a callable by Benjamin Peterson · 16 years ago
  16. 5c8da86 convert usage of fail* to assert* by Benjamin Peterson · 16 years ago
  17. 39d43b4 correctly handle descrs with __missing__ by Benjamin Peterson · 16 years ago
  18. 1880d8b add a SETUP_WITH opcode by Benjamin Peterson · 16 years ago
  19. 87e5006 handle errors from _PyObject_LookupSpecial when __get__ fails by Benjamin Peterson · 16 years ago
  20. fb6fb06 properly lookup __instancecheck__ and __subclasscheck__ by Benjamin Peterson · 16 years ago
  21. af1692a convert some more special methods to use _PyObject_LookupSpecial by Benjamin Peterson · 16 years ago
  22. 809e225 lookup __reversed__ correctly as a special method by Benjamin Peterson · 16 years ago
  23. db7ebcf fix this test by Benjamin Peterson · 16 years ago
  24. 399e4c4 add _PyObject_LookupSpecial to handle fetching special method lookup by Benjamin Peterson · 16 years ago
  25. 5083dc5 fix a segfault when setting __class__ in __del__ #5283 by Benjamin Peterson · 16 years ago
  26. accb3d0 move test to a more appropiate one by Benjamin Peterson · 16 years ago
  27. d4d400c try to initalize all builtin types with PyType_Ready to avoid problems like #5787 by Benjamin Peterson · 16 years ago
  28. 21f6aac apply the second part of #4242's patch; classify all the implementation details in test_descr by Benjamin Peterson · 16 years ago
  29. 273c233 when __getattr__ is a descriptor, call it correctly; fixes #4230 by Benjamin Peterson · 17 years ago
  30. 581eb1e Fix one of the tests: it relied on being present in an "output test" in by Armin Rigo · 17 years ago
  31. 48361f5 Issue 2235: Py3k warnings are now emitted for classes that will no longer inherit a__hash__ implementation from a parent class in Python 3.x. The standard library and test suite have been updated to not emit these warnings. by Nick Coghlan · 17 years ago
  32. 53663a6 Issue 2235: __hash__ is once again inherited by default, but inheritance can be blocked explicitly so that collections.Hashable remains meaningful by Nick Coghlan · 17 years ago
  33. 60d6c7f Issue #2115: __slot__ attributes setting was 10x slower. by Amaury Forgeot d'Arc · 17 years ago
  34. 4854552 Rewrite test_descr as unittest, written for GHOP by Jeff Wheeler. by Georg Brandl · 18 years ago
  35. 37edeab Fix test67.py from issue #1303614. by Guido van Rossum · 18 years ago
  36. 4e3f124 Fi debug turd -- a call accidentally left out. by Guido van Rossum · 18 years ago
  37. bf839e2 Fix the tests by restoring __import__. I think the test is still valid. by Neal Norwitz · 18 years ago
  38. 9acc387 Turn three recently fixed crashers into regular tests. by Guido van Rossum · 18 years ago
  39. a6e515b Remove a straggling debugging print line. by Brett Cannon · 18 years ago
  40. 4e438bc Actually execute the tests for the getter/setter/deleter tests on properties. by Brett Cannon · 18 years ago
  41. 636afc5 I forgot to fix one occurence of new in test_descr by Christian Heimes · 18 years ago
  42. c756d00 Replaced import of the 'new' module with 'types' module and added a deprecation warning to the 'new' module. by Christian Heimes · 18 years ago
  43. d1ef789 Issue 1416. Add getter, setter, deleter methods to properties that can be by Guido van Rossum · 18 years ago
  44. 1e534b5 Fix a crasher where Python code managed to infinitely recurse in C code without by Brett Cannon · 18 years ago
  45. 9790a27 Fix for #1303614 and #1174712: by Armin Rigo · 18 years ago
  46. 0d4c06e Whitespace normalization. Ugh, we really need to do this more often. by Neal Norwitz · 18 years ago
  47. c0ba52d Revert r53997 as per by Armin Rigo · 18 years ago
  48. cbd9ee6 When __slots__ are set to a unicode string, make it work the same as by Neal Norwitz · 18 years ago
  49. ab8802a Fix warnings about object.__init__() signature. by Guido van Rossum · 18 years ago
  50. 6f2d09c Patch #1623563: allow __class__ assignment for classes with __slots__. by Žiga Seilnacht · 18 years ago
  51. 71436f0 Patch #1680015: Don't modify __slots__ tuple if it contains an unicode by Žiga Seilnacht · 18 years ago
  52. ea5962f Whitespace normalization. by Tim Peters · 18 years ago
  53. 0fca97a Patch #1674228: when assigning a slice (old-style), check for the by Georg Brandl · 18 years ago
  54. fa95569 Add checking for a number of metaclass error conditions. by Jeremy Hylton · 18 years ago
  55. b8d6d73 Fix the line to what is my guess at the original author's meaning. by Armin Rigo · 19 years ago
  56. f390442 a test for an error condition not covered by existing tests by Michael W. Hudson · 19 years ago
  57. 5d59c09 Patch #1567691: super() and new.instancemethod() now don't accept by Georg Brandl · 19 years ago
  58. e9462c7 Change fix for segfaulting property(), add a NEWS entry and a test. by Georg Brandl · 19 years ago
  59. d5cfa54 Put method-wrappers into trashcan. Fixes #927248. by Martin v. Löwis · 19 years ago
  60. 22565aa An object with __call__ as an attribute, when called, will have that attribute checked for __call__ itself, and will continue to look until it finds an object without the attribute. This can lead to an infinite recursion. by Brett Cannon · 19 years ago
  61. fd01d79 (arre, arigo) SF bug #1350060 by Armin Rigo · 19 years ago
  62. 171b868 subclasspropagation(): Squash two more bogus hash(x) == id(x) by Tim Peters · 19 years ago
  63. 85b362f specials(): squash another incorrect hash(x) == id(x) by Tim Peters · 19 years ago
  64. 7731dfd Huh. This belonged with the last checkin -- no idea why svn didn't commit it. by Tim Peters · 19 years ago
  65. 533ff6f Patch #1434038: property() now uses the getter's docstring if there is by Georg Brandl · 19 years ago
  66. bf36409 PEP 352 implementation. Creates a new base class, BaseException, which has an by Brett Cannon · 19 years ago
  67. 6a29c32 Add test for classmethod ./. keyword args. by Georg Brandl · 19 years ago
  68. 1b27f86 Whitespace normalization. by Tim Peters · 20 years ago
  69. 037d1e0 SF bug #1153075: "PyXxx_Check(x) trusts x->ob_type->tp_mro". by Armin Rigo · 20 years ago
  70. fd163f9 SF patch #1390657: by Armin Rigo · 20 years ago
  71. c6686b7 Added proper reflection on instances of <type 'method-wrapper'>, e.g. by Armin Rigo · 20 years ago
  72. b180c06 Fix tests dependent on the exception raised by non-settable descriptors. by Barry Warsaw · 20 years ago
  73. b67cc80 SF bug #1155938: Missing None check for __init__(). by Raymond Hettinger · 20 years ago
  74. 5a8a037 Use descriptors. by Guido van Rossum · 21 years ago
  75. 2584781 Removing tests that fail because of changes in PyString_InternInPlace(), by Armin Rigo · 21 years ago
  76. 91a968a Ensure super() lookup of descriptor from classmethod works (SF #743627) by Phillip J. Eby · 21 years ago
  77. 70a6b49 Replace backticks with repr() or "%r" by Walter Dörwald · 22 years ago
  78. 58eb11c Whitespace normalization. by Tim Peters · 22 years ago
  79. b2c7de4 Fix for by Michael W. Hudson · 22 years ago
  80. e723e45 Repair refcounting on error return from type_set_bases. by Michael W. Hudson · 22 years ago
  81. 2b6220d SF bug #762455: Python segfaults when sys.stdout is changed in getattr by Raymond Hettinger · 22 years ago
  82. be97153 SF bug #753451: classmethod abuse --> SystemError by Raymond Hettinger · 22 years ago
  83. 98a379e Add test for bug #751998. by Neal Norwitz · 22 years ago
  84. bb1861a Remove debug code from weakref_segfault(). by Guido van Rossum · 22 years ago
  85. aabe0b3 Add testcase for SF 742911. by Guido van Rossum · 22 years ago
  86. a4541a3 - super() no longer ignores data descriptors, except __class__. See by Guido van Rossum · 22 years ago
  87. 52b2705 Ouch, it's Carlo Verre, not Verre Carlo. by Guido van Rossum · 22 years ago
  88. 4dcdb78 Close off the "Verre Carlo hack" as discussed on python-dev. by Guido van Rossum · 22 years ago
  89. f394df4 SF bug #699934: Obscure error message by Raymond Hettinger · 22 years ago
  90. 83245b5 SF bug #699934: Obscure error message by Raymond Hettinger · 22 years ago
  91. f389c77 Use floor division (// and __[r]floordiv__ in right-dispatch test. by Guido van Rossum · 22 years ago
  92. f2715e0 Whitespace normalization. by Tim Peters · 22 years ago
  93. 298e421 SF patch #685738 by Michael Stone. by Guido van Rossum · 23 years ago
  94. a89d10e Implement another useful feature for proxies: in super(X, x), x may by Guido van Rossum · 23 years ago
  95. 03bc7d3 SF #532767: isinstance(x, X) should work when x is a proxy for an X by Guido van Rossum · 23 years ago
  96. b6e5a0c Put proper tests in classmethod_get(). Remove the type argument to by Guido van Rossum · 23 years ago
  97. 3f50cdc Get rid of the "bozo" __getstate__ that was inserted when __slots__ by Guido van Rossum · 23 years ago
  98. de8b94c Fix SF bug #683467, 'int' ability to generate longs not inherited by Neal Norwitz · 23 years ago
  99. f631859 Add __getnewargs__ method to classes that need it. by Guido van Rossum · 23 years ago
  100. 1a99750 Fix SF bug #667147, Segmentation fault printing str subclass by Neal Norwitz · 23 years ago