1. 8567761 Issue #7880: Fix sysconfig when the python executable is a symbolic link. by Florent Xicluna · 15 years ago
  2. 4d42f2b #7772: Fix test_py3kwarn. Now the test suite could pass with "-3" flag. by Florent Xicluna · 15 years ago
  3. 47627d5 #7624: Fix isinstance(foo(), collections.Callable) for old-style classes. by Florent Xicluna · 15 years ago
  4. 6f682be Move some tests from test_macpath to test_genericpath.CommonTest by Florent Xicluna · 15 years ago
  5. faf1753 Replace the stderr logging with assertNotEqual(returncode, 0). by Florent Xicluna · 15 years ago
  6. 5ffa325 Addition of setUpClass and setUpModule shared fixtures to unittest. by Michael Foord · 15 years ago
  7. 53e8eea Fix for potentials errors in constructing unittest failure messages. Plus skipped test methods no longer run setUp and tearDown (Issue 8059) by Michael Foord · 15 years ago
  8. fc8a1ed Refresh the documentation for the test.test_support module. by Florent Xicluna · 15 years ago
  9. 400efc2 #2777: Try hard to make Win7 buildbot happy... by Florent Xicluna · 15 years ago
  10. 154b7ad Issue #1530559: When packing a non-integer with any integer conversion by Mark Dickinson · 15 years ago
  11. c083864 Do not fail if returncode is 0 on send_signal/kill/terminate, for win32 platforms. by Florent Xicluna · 15 years ago
  12. c02bbe3 #2777: Enable test_send_signal, test_terminate and test_kill on win32 platforms. by Florent Xicluna · 15 years ago
  13. 6de9e93 Issue #7849: Now the utility ``check_warnings`` verifies if the warnings are by Florent Xicluna · 15 years ago
  14. 1f3b4e1 Fix some py3k warnings in the standard library. by Florent Xicluna · 15 years ago
  15. 4e62949 Reverting the change made in r78431. by Senthil Kumaran · 15 years ago
  16. 6b31fd0 eliminate py3k warnings in argparse by Benjamin Peterson · 15 years ago
  17. 632df99 Skip test_send_signal, test_kill, test_terminate on win32 platforms, for 2.7a4 release. by Florent Xicluna · 15 years ago
  18. 985478d Minor tweaking of previous r78734, and add a NEWS entry. by Florent Xicluna · 15 years ago
  19. dc1531c Create test_genericpath.CommonTest and reuse it to test other path modules. by Florent Xicluna · 15 years ago
  20. 5852641 Do not print the header lines when running a single test. by Florent Xicluna · 15 years ago
  21. d45a278 Added schema version test in dictConfig. by Vinay Sajip · 15 years ago
  22. 12d750d Backport "test.regrtest -R 2:3" syntax from py3k branch, and other minor adjustments. by Florent Xicluna · 15 years ago
  23. aa90db9 #2777: Apply same recipe on win32, i.e. do not inherit file handles. by Florent Xicluna · 15 years ago
  24. b7c2002 Print platform information to stdout, to help troubleshooting platform-specific failures. by Florent Xicluna · 15 years ago
  25. 0932dc5 Keep the test files in the ./build/ subdirectory, if Python is not installed. by Florent Xicluna · 15 years ago
  26. 467298c Call setreuid and setregid in a subprocess to avoid altering the test runner's by Gregory P. Smith · 15 years ago
  27. af9a06a #2777: Apply same recipe for test_terminate and test_kill, i.e. close or redirect fds. by Florent Xicluna · 15 years ago
  28. cecef39 #2777: Handle fds more carefully to try to fix some x86-Linux failures (namely, neal bot and twisted bot). by Florent Xicluna · 15 years ago
  29. 1c0c78c Fix incorrect stacklevel for DeprecationWarnings originating from the struct module. by Mark Dickinson · 15 years ago
  30. b3be23a remove the svn:executable property from files that don't have shebang lines by Benjamin Peterson · 15 years ago
  31. 7272acf These line should not be there. by Florent Xicluna · 15 years ago
  32. d693563 Let's use assertIsNone / assertIsNotNone. It's hype. by Florent Xicluna · 15 years ago
  33. 80e0e2d Workaround #3137: Retry SIGINT if it is not received the first time. by Florent Xicluna · 15 years ago
  34. ab5e17f #2777: Enable test_send_signal, test_kill and test_terminate on all platforms. by Florent Xicluna · 15 years ago
  35. bab22a7 Cleanup. by Florent Xicluna · 15 years ago
  36. 19c9b60 Try to fix buildbot breakage from r78384. by Dirkjan Ochtman · 15 years ago
  37. 3bc5cb7 #7805: wait until all workers are started before collecting their PIDs by Florent Xicluna · 15 years ago
  38. a36e245 Fix transient refleak in test_popen2. by Florent Xicluna · 15 years ago
  39. 7c924ec Issue #1054943: Fix unicodedata.normalize('NFC', text) for the Public Review by Victor Stinner · 15 years ago
  40. 6458104 Issue #7232: Add support for the context manager protocol to the TarFile class. by Lars Gustäbel · 15 years ago
  41. 9e220be Fix wording. by Florent Xicluna · 15 years ago
  42. 842b95b plug ref leaks by Benjamin Peterson · 15 years ago
  43. d23d393 Issue #7820: The parser tokenizer restores all bytes in the right if the BOM by Victor Stinner · 15 years ago
  44. 0e717ad remove cross-version compatibility code by Benjamin Peterson · 15 years ago
  45. bd56722 remove code to avoid BaseException.message bug by Benjamin Peterson · 15 years ago
  46. c0a9d41 Test test_pep277 is only relevant for Unicode-friendly filesystems. by Florent Xicluna · 15 years ago
  47. fa31eaa convert deprecated fail* methods to assert* variants by Benjamin Peterson · 15 years ago
  48. e4d90c2 use test_main() in __main__ section by Benjamin Peterson · 15 years ago
  49. 4aa8a13 prevent warning filter adjustment from altering other tests by Benjamin Peterson · 15 years ago
  50. 036fae3 enable running of argparse tests and fix two that failed in the new environment by Benjamin Peterson · 15 years ago
  51. 5e32fe5 remove another coding cookie by Benjamin Peterson · 15 years ago
  52. a39e966 set svn:eol-style by Benjamin Peterson · 15 years ago
  53. 2db61fb Tentatively enable test_pep277 on all platforms. by Florent Xicluna · 15 years ago
  54. d8472a4 Refactor test_dict using assertRaises. by Florent Xicluna · 15 years ago
  55. e9330e7 Initial commit of the argparse library, based on argparse 1.1. by Steven Bethard · 15 years ago
  56. 7512a90 Fix test to be skipped on windows. by Gregory P. Smith · 15 years ago
  57. 6a65f85 Fixes issue #7999: os.setreuid() and os.setregid() would refuse to accept by Gregory P. Smith · 15 years ago
  58. 3c1586a Cleanup the test added in r78517 based on Ezio Melotti's feedback. by Gregory P. Smith · 15 years ago
  59. c1baf4a Fix the new test on windows (skip it, its posix only) by Gregory P. Smith · 15 years ago
  60. e6390a1 Adds the hashlib.algorithms attribute. See issue7418. by Gregory P. Smith · 15 years ago
  61. 9e5d132 Issue #7242: On Solaris 9 and earlier calling os.fork() from within a by Gregory P. Smith · 15 years ago
  62. cce211f Issue #1068268: The subprocess module now handles EINTR in internal by Gregory P. Smith · 15 years ago
  63. 613c7a5 Issue #7481: When a threading.Thread failed to start it would leave the by Gregory P. Smith · 15 years ago
  64. 78fd521 Fix an oversight in r78508: p.wait() should be compared to 0 by Florent Xicluna · 15 years ago
  65. 98e3fc3 Clean test_subprocess: use assertRaises, skipIf, skipUnless helpers and a custom helper assertStderrEqual. by Florent Xicluna · 15 years ago
  66. be8c2b1 #7793: Fix RuntimeError when running "regrtest -R" for multibyte codecs. by Florent Xicluna · 15 years ago
  67. 2a903b2 Issue #1729305: Fix doctest to handle encode error with "backslashreplace". It fixes #7667 too. by Florent Xicluna · 15 years ago
  68. 0263da5 Add a test for normpath to test_macpath. by Ezio Melotti · 15 years ago
  69. f4b6186 #691291: codecs.open() should not convert end of lines on reading and writing. by Florent Xicluna · 15 years ago
  70. e9a7808 Fix for Issue7540 ; urllib2 will raise a TypeError when you try to add_data to by Senthil Kumaran · 15 years ago
  71. 8526adf Fix for Issue3819 - urllib2 sends Basic auth across redirects by Senthil Kumaran · 15 years ago
  72. 2d9856d Issue #7309: Unchecked pointer access when converting UnicodeEncodeError, UnicodeDecodeError, and UnicodeTranslateError to strings. by Eric Smith · 15 years ago
  73. ebc73dc Issue #7427: improve the representation of httplib.BadStatusLine exceptions. by Dirkjan Ochtman · 15 years ago
  74. f20f9c2 Issue #7649: Fix u'%c' % char for character in range 0x80..0xFF by Victor Stinner · 15 years ago
  75. 8614817 Fix #1537721: add writeheader() method to csv.DictWriter. by Dirkjan Ochtman · 15 years ago
  76. d99ef9a unittest.TestResult can now be used with the TextTestRunner. TextTestRunner compatible with old TestResult objects. by Michael Foord · 15 years ago
  77. cf80f04 Fix spacing nit. Thanks Eric Smith for the public humiliation. by Mark Dickinson · 15 years ago
  78. 8ee9187 Make global variable overflowok into a keyword argument; this fixes a failure when running ./python -m test.regrtest -R 3:2: test_format by Mark Dickinson · 15 years ago
  79. 48cc8dc added make_archive (and secondary APIs) to shutil by Tarek Ziadé · 15 years ago
  80. f28fd24 Issue 6292: for the moment at least, the test suite passes if run by R. David Murray · 15 years ago
  81. 87bcb24 Issue #6902: Fix problem with built-in types format incorrectly with 0 padding. by Eric Smith · 15 years ago
  82. ae3db0a Support for old TestResult object (unittest) with warnings when using unsupported features. by Michael Foord · 15 years ago
  83. 5cac46d * fix issue#7476 by Jack Diederich · 15 years ago
  84. 1ce6136 fixes issue #1522237, bad init check in _threading_local by Jack Diederich · 15 years ago
  85. b72b0eb #7627: MH.remove() would fail if the MH mailbox was locked; by Andrew M. Kuchling · 15 years ago
  86. f32d4ac Issue #7988: Fix default alignment to be right aligned for complex.__format__. Now it matches other numeric types. by Eric Smith · 15 years ago
  87. 2f67756 Silence UnicodeWarning in crazy unittest test. by Michael Foord · 15 years ago
  88. 92cb4a8 Reduce number of random tests in test_strtod, to avoid hogging buildbot time. by Mark Dickinson · 15 years ago
  89. 45ad801 Issue #7384: skip test_curses on FreeBSD, in order to allow other buildbot tests to complete. by Mark Dickinson · 15 years ago
  90. 82b34c5 Issue #5211: Fix complex type to avoid implicit calls to by Mark Dickinson · 15 years ago
  91. 9e9af21 skip tests with a non-ascii cwd when the file system encoding is ascii by Ezio Melotti · 15 years ago
  92. 18d5a69 Fix for Issue7751: urllib.urlopen("///C|/foo/bar/spam.foo") by Senthil Kumaran · 15 years ago
  93. e3467d5 Remove e assertIs definitions and use correct assert* methods. by Ezio Melotti · 15 years ago
  94. 4cc80ca #3426: os.path.abspath now returns unicode when its arg is unicode. by Ezio Melotti · 15 years ago
  95. 4e78de8 Fix for Issue7904. urlparse.urlsplit to handle schemes in the way defined by RFC3986 by Senthil Kumaran · 15 years ago
  96. cc43b56 - apply patch from issue 7005 - add corresponding documentation by Fred Drake · 15 years ago
  97. c2294dd Fix unittest.TestCase.assertDictContainsSubset so it can't die with unicode issues when constructing failure messages. Issue 7956 by Michael Foord · 15 years ago
  98. 225a099 unittest.TestCase uses safe_repr for producing failure messages. Partial fix for issue 7956 by Michael Foord · 15 years ago
  99. 6d8effb Issue #7633: Context method in the decimal module (with the exception by Mark Dickinson · 15 years ago
  100. e511fc7 #7930: fix stripid by Ezio Melotti · 15 years ago