1. 19e79f7 Avoid PendingDeprecationWarnings emitted by deprecated unittest methods. by Georg Brandl · 16 years ago
  2. dad7b7b Restore default testRunner argument in unittest.main to None. Issue 6177 by Michael Foord · 16 years ago
  3. 61e7fbf Fixes issue6169: it was possible for two ipaddr network addresses to compare by Gregory P. Smith · 16 years ago
  4. b02ceda #4547: When debugging a very large function, it was not always by Amaury Forgeot d'Arc · 16 years ago
  5. 8fcaebb Issue 3848: document the fact that epoll register raises an IOError if by R. David Murray · 16 years ago
  6. 382ccdf remove function import by Benjamin Peterson · 16 years ago
  7. 4698d99 Issue #6152: New option '-j'/'--multiprocess' for regrtest allows running by Antoine Pitrou · 16 years ago
  8. 4528bcd The test for #5330 wasn't correct. by Antoine Pitrou · 16 years ago
  9. 46dbe27 Issue #5330: C functions called with keyword arguments were not reported by by Antoine Pitrou · 16 years ago
  10. 4650892 add with statements by Benjamin Peterson · 16 years ago
  11. b4a81c8 Add test discovery to unittest. Issue 6001. by Michael Foord · 16 years ago
  12. 6b98544 Refactor test parameterization to resolve update timing problem. by R. David Murray · 16 years ago
  13. 578a228 Issue 5982: Classmethod and staticmethod expose wrapped function with __func__. by Raymond Hettinger · 16 years ago
  14. 822b87f Deprecate contextlib.nested(). The with-statement now provides this functionality directly. by Raymond Hettinger · 16 years ago
  15. 8de212b Backport smtplib auth tests from r72990. by R. David Murray · 16 years ago
  16. 6a11102 explicitly close files by Philip Jenvey · 16 years ago
  17. d67ea7d fix issue #6121 by stripping spaces from the argument in the 'help' function. by R. David Murray · 16 years ago
  18. 39d43b4 correctly handle descrs with __missing__ by Benjamin Peterson · 16 years ago
  19. a68cad1 Fix field name conflicts for named tuples. by Raymond Hettinger · 16 years ago
  20. 57bef68 Issue 5794: fix cPickle's unpickling of recursive tuples. by Collin Winter · 16 years ago
  21. 944f684 Allow multiple context managers in one with statement, as proposed by Georg Brandl · 16 years ago
  22. 1880d8b add a SETUP_WITH opcode by Benjamin Peterson · 16 years ago
  23. 87e5006 handle errors from _PyObject_LookupSpecial when __get__ fails by Benjamin Peterson · 16 years ago
  24. 176a56c make class skipping decorators the same as skipping every test of the class by Benjamin Peterson · 16 years ago
  25. 0b09c42 Issue #6050: Don't fail extracting a directory from a zipfile if by Martin v. Löwis · 16 years ago
  26. d49e375 Issue #1309352: fcntl now converts its third arguments to a C `long` rather by Antoine Pitrou · 16 years ago
  27. e266f25 Fixed Issue1424152, urllib2 fails with HTTPS over Proxy. by Senthil Kumaran · 16 years ago
  28. 3724d6c Add smtplib test from issue 5259. by R. David Murray · 16 years ago
  29. f3bd687 Issue #3877: skip a test_fileio subtest on all BSDs, not only FreeBSD by Antoine Pitrou · 16 years ago
  30. 4b94b19 Issue 6089: str.format raises SystemError. by Eric Smith · 16 years ago
  31. 8254d39 Fix spelling left over from testing. by R. David Murray · 16 years ago
  32. 812e1c8 Don't be so wordy in requires('network') in case other tests by R. David Murray · 16 years ago
  33. ad3058e Fix Issue #4066: smtplib.SMTP_SSL._get_socket now correctly returns by R. David Murray · 16 years ago
  34. 739aa36 don't use subprocess.call with PIPEs as the child can fill the pipe buf and by Philip Jenvey · 16 years ago
  35. a50af06 Rename TestCase._result to _resultForDoCleanups to avoid potential clashes in TestCase subclasses. Issue 6072. by Michael Foord · 16 years ago
  36. a4e0efa Issue #5829: don't raise OverflowError for complex('1e500'). Backport of r72803. by Mark Dickinson · 16 years ago
  37. c8d30fe Fix issue #1689458 by teaching frame_setlineno how to jump to the first line of by Jeffrey Yasskin · 16 years ago
  38. f03c42f Issue 6032: fix refleaks in test_urllib2_localnet. by Collin Winter · 16 years ago
  39. 61328ee While I was modifying test_trace, it threw an exception when I accidentally by Jeffrey Yasskin · 16 years ago
  40. a27dbc6 completely ignore old-style stuff for type checking overloading by Benjamin Peterson · 16 years ago
  41. fb6fb06 properly lookup __instancecheck__ and __subclasscheck__ by Benjamin Peterson · 16 years ago
  42. 757b3c9 use skipTest() by Benjamin Peterson · 16 years ago
  43. 775fd66 Issue #2116: Weak references and weak dictionaries now support copy()ing and deepcopy()ing. by Antoine Pitrou · 16 years ago
  44. 0f48974 Issue 6024: make regrtest.py promote refleaks to test failures. by Collin Winter · 16 years ago
  45. 0db3cd6 a useful decorator for cleaning up threads by Benjamin Peterson · 16 years ago
  46. 92d102b prevent refleaks from threads by Benjamin Peterson · 16 years ago
  47. 8785554 Fix test failure on Windows, and add skip check if even unicodedata by R. David Murray · 16 years ago
  48. 996ba02 Issue #4050: inspect.findsource/getsource now raise an IOError if the 'source' by R. David Murray · 16 years ago
  49. 5d31e05 Adds a verbosity keyword argument to unittest.main plus a minor fix allowing you to specify test modules / classes by Michael Foord · 16 years ago
  50. b1d4585 Issue #5981: Fix some float.fromhex bugs related to inf and nan handling. by Mark Dickinson · 16 years ago
  51. 784d455 *sigh* deal with instances correctly by Benjamin Peterson · 16 years ago
  52. af1692a convert some more special methods to use _PyObject_LookupSpecial by Benjamin Peterson · 16 years ago
  53. 809e225 lookup __reversed__ correctly as a special method by Benjamin Peterson · 16 years ago
  54. 5edb1a1 Fix an off by one error on negative indexs to __getitem__ by Gregory P. Smith · 16 years ago
  55. 1aa4700 PyCode_NewEmpty: by Jeffrey Yasskin · 16 years ago
  56. db7ebcf fix this test by Benjamin Peterson · 16 years ago
  57. 399e4c4 add _PyObject_LookupSpecial to handle fetching special method lookup by Benjamin Peterson · 16 years ago
  58. f7e7bab Pre-opened test file needs to be opened in binary mode. by R. David Murray · 16 years ago
  59. 8fd522f Issue5955: aifc's close method did not close the file it wrapped, by R. David Murray · 16 years ago
  60. a7fb408 Issue 3739: The unicode-internal encoder now reports the number of *characters* by Walter Dörwald · 16 years ago
  61. a985a3a Issue #5920: Changed format.__float__ and complex.__float__ to use a precision of 12 when using the empty presentation type. This more closely matches str()'s behavior and reduces surprises when adding alignment flags to an empty format string. Patch by Mark Dickinson. by Eric Smith · 16 years ago
  62. 4d4313d #5142: add module skipping feature to pdb. by Georg Brandl · 16 years ago
  63. 7c26d76 #1309567: fix linecache behavior of stripping subdirectories from paths when looking for relative filename matches. Also add a linecache test suite. by Georg Brandl · 16 years ago
  64. 7ba8e1c Fix issue 5890: (property subclass shadows __doc__ string) by inserting by R. David Murray · 16 years ago
  65. 653dece Issue #4426: The UTF-7 decoder was too strict and didn't accept some legal sequences. by Antoine Pitrou · 16 years ago
  66. d02eeda Issue #4751: For hashlib algorithms provided by OpenSSL, the Python by Gregory P. Smith · 16 years ago
  67. 07ef487 by Michael Foord · 16 years ago
  68. 7430989 Isue #5084: unpickling now interns the attribute names of pickled objects, by Antoine Pitrou · 16 years ago
  69. e2fb98f Add addCleanup and doCleanups to unittest.TestCase. by Michael Foord · 16 years ago
  70. 420d4eb #1607951: Make mailbox.Maildir re-read the directories less frequently. by Andrew M. Kuchling · 16 years ago
  71. 6e7bdde Convert test method names to PEP8 style. by Gregory P. Smith · 16 years ago
  72. 6282169 remove py3k compat code by Benjamin Peterson · 16 years ago
  73. d7e8e34 don't let sys.argv be used in the tests by Benjamin Peterson · 16 years ago
  74. 829f6b8 Adds an exit parameter to unittest.main(). If False main no longer by Michael Foord · 16 years ago
  75. 1fc0231 Issue #3002: `shutil.copyfile()` and `shutil.copytree()` now raise an by Antoine Pitrou · 16 years ago
  76. 1d49926 Adds the ipaddr module to the standard library. Issue #3959. by Gregory P. Smith · 16 years ago
  77. 6733bed Make test.test_support.EnvironmentVarGuard behave like a dictionary. by Walter Dörwald · 16 years ago
  78. 9139cc6 Issue #1588: Add complex.__format__. by Eric Smith · 16 years ago
  79. 7c7250d make sure to close file by Benjamin Peterson · 16 years ago
  80. a9b4d47 make sure mode is removable while cleaning up test droppings by Benjamin Peterson · 16 years ago
  81. 9c6fc51 fix test_shutil on ZFS #5676 by Benjamin Peterson · 16 years ago
  82. 61a0d05 Backport some of the float formatting tests from py3k. by Mark Dickinson · 16 years ago
  83. 92fcc9c Issue #5864: format(1234.5, '.4') gives misleading result by Mark Dickinson · 16 years ago
  84. 0f457e5 More aifc tests. by R. David Murray · 16 years ago
  85. 971b1b1 Now that we've got a test_aifc, add a few tests. by R. David Murray · 16 years ago
  86. 25b4add Fix issue 2245. aifc now skips any chunk type it doesn't actually by R. David Murray · 16 years ago
  87. 4b965f6 Use test.test_support.EnvironmentVarGuard where tests change environment vars. by Walter Dörwald · 16 years ago
  88. 4c69da2 Fix typo. by Walter Dörwald · 16 years ago
  89. 99f2779 Issue #4971: Fix titlecase for characters that are their own by Martin v. Löwis · 16 years ago
  90. 068f065 Issue #5835, deprecate PyOS_ascii_formatd. by Eric Smith · 16 years ago
  91. 5d98ec7 Issue #5828 (Invalid behavior of unicode.lower): Fixed bogus logic in by Walter Dörwald · 16 years ago
  92. a145317 Issue #5837: Certain sequences of calls to set() and unset() for by Walter Dörwald · 16 years ago
  93. 0a6501b Fix typo in complex parsing code; expand tests. by Mark Dickinson · 16 years ago
  94. 5083dc5 fix a segfault when setting __class__ in __del__ #5283 by Benjamin Peterson · 16 years ago
  95. 0badeef Remove unnecessary double negative by Mark Dickinson · 16 years ago
  96. 6ab635a Issue #5593: Use more robust test for double-rounding in test_fsum. by Mark Dickinson · 16 years ago
  97. 4af8e74 Issue #5812: The two-argument form of the Fraction constructor by Mark Dickinson · 16 years ago
  98. 95bc980 Issue #5816: by Mark Dickinson · 16 years ago
  99. 8100bd8 Issue #5812: make Fraction('1e-6') valid. Backport of r71806. by Mark Dickinson · 16 years ago
  100. ebafbb7 Fixed issue 5782: formatting with commas didn't work if no specifier type code was given. by Eric Smith · 16 years ago