1. d0052d1 #1571184: makeunicodedata.py now generates the functions _PyUnicode_ToNumeric, by Amaury Forgeot d'Arc · 16 years ago
  2. abe3d3e Issue #7058: Added save/restore for argv and os.environ to runtest_inner by R. David Murray · 16 years ago
  3. 245d915 Issue #7042: Fix test_signal failure on OS X 10.6 64-bit builds by Mark Dickinson · 16 years ago
  4. 82d31e9 test logging by Benjamin Peterson · 16 years ago
  5. 7adbb5a #7050 fix a SystemError when using tuple unpacking and augmented assignment by Benjamin Peterson · 16 years ago
  6. f895cf5 #7031: Add TestCase.assertIsInstance and negated method. by Georg Brandl · 16 years ago
  7. dc61ec3 That's self.env.unset(k) and not env.unset(k) I was heading back to the problem. by Senthil Kumaran · 16 years ago
  8. 5a43e86 using dict.unset(k) instead of del dict[k]. consistent with release26-maint by Senthil Kumaran · 16 years ago
  9. 91abd6e Fix for issue7026 test_urllib: unsetting missing 'env' variable. by Senthil Kumaran · 16 years ago
  10. 8ca7482 Fix buggy accuracy test by Mark Dickinson · 16 years ago
  11. 8b90204 #5329: fix os.popen* regression from 2.5: don't execute commands as a sequence by Philip Jenvey · 16 years ago
  12. 7e7a3ec Issue #7019: Unmarshalling of bad long data could produce unnormalized by Mark Dickinson · 16 years ago
  13. 7248178 Issue #6790: Make it possible again to pass an `array.array` to by Antoine Pitrou · 16 years ago
  14. dbf3b25 #6990: clear threading.local's key only after its thread state is removed: by Philip Jenvey · 16 years ago
  15. b93fff0 Issue #3366: Add gamma function to math module. by Mark Dickinson · 16 years ago
  16. 97f5ff3 Prevent test_bad_address failure when a domain in the dns search by R. David Murray · 16 years ago
  17. b4fd4d3 Patch from Thomas Barr so that csv.Sniffer will set doublequote property. by Skip Montanaro · 16 years ago
  18. 9aac245 #7000: document "sep" in capwords. Add a few tests by Ezio Melotti · 16 years ago
  19. b49e53e #6243: fix segfault when keyname() returns a NULL pointer. by Andrew M. Kuchling · 16 years ago
  20. 2fcd03b http://bugs.python.org/issue6971 by Kristján Valur Jónsson · 16 years ago
  21. 4d94743 When range checking was added to time.strftime() a check was placed on tm_isdst by Brett Cannon · 16 years ago
  22. 9f20d9d Issue 6877: this patch makes it possible to link the readline extension by Ronald Oussoren · 16 years ago
  23. ab84989 #6944: the argument to PyArg_ParseTuple should be a tuple, otherwise a SystemError is set. Also clean up another usage of PyArg_ParseTuple. by Georg Brandl · 16 years ago
  24. dc782b5 backport keyword argument support for bytearray.decode by Benjamin Peterson · 16 years ago
  25. 332d721 add keyword arguments support to str/unicode encode and decode #6300 by Benjamin Peterson · 16 years ago
  26. 2985dbb Use skipUnless to skip math module tests on non-IEEE 754 platforms. by Mark Dickinson · 16 years ago
  27. ebf3adc #6844 followup: the warning when setting Exception.message was removed, do not test for it. by Georg Brandl · 16 years ago
  28. e9741f3 Issue #6922: Fix an infinite loop when trying to decode an invalid by Georg Brandl · 16 years ago
  29. 0674d3f #6844: do not emit DeprecationWarnings on access if Exception.message has been set by the user. by Georg Brandl · 16 years ago
  30. c4dcb38 Fix issue #1590864, multiple threads and fork() can cause deadlocks, by by Thomas Wouters · 16 years ago
  31. 69dfe8d Make the pdb displayhook compatible with the standard displayhook: do not print Nones. Add a test for that. by Georg Brandl · 16 years ago
  32. 6c39f06 Remove some more boilerplate from the actual tests in test_pdb. by Georg Brandl · 16 years ago
  33. e91ea56 Test discovery in unittest will only attempt to import modules that are importable; i.e. their names are valid Python identifiers. If an import fails during discovery this will be recorded as an error and test discovery will continue. Issue 6568. by Michael Foord · 16 years ago
  34. 5a9719d unittest.TestLoader.loadTestsFromName honors the loader suiteClass attribute. Issue 6866. by Michael Foord · 16 years ago
  35. c3f7937 Objects that compare equal automatically pass or fail assertAlmostEqual and assertNotAlmostEqual tests on unittest.TestCase. Issue 6567. by Michael Foord · 16 years ago
  36. 1036a7f #6026 - fix tests that failed without zlib by Ezio Melotti · 16 years ago
  37. 21121e6 Issue #6856: Add a filter keyword argument to TarFile.add(). by Lars Gustäbel · 16 years ago
  38. 93ed820 revert unintended changes by Benjamin Peterson · 16 years ago
  39. 8246968 tabbify by Benjamin Peterson · 16 years ago
  40. 5cfa804 Issue #6857: Fix Decimal formatting to be consistent with existing float by Mark Dickinson · 16 years ago
  41. 968f169 #Issue 6795: Fix infinite recursion in long(Decimal('nan')); change int(Decimal('nan')) to raise ValueError instead of either returning NaN or raising InvalidContext. by Mark Dickinson · 16 years ago
  42. 491ea55 Issue #6850: Fix bug in Decimal._parse_format_specifier for formats by Mark Dickinson · 16 years ago
  43. c8a7c7c Issue #6846: bytearray.pop was returning ints in the range [-128, 128) by Mark Dickinson · 16 years ago
  44. 2596758 Fix build issues on OSX 10.6 (issue 6802) by Ronald Oussoren · 16 years ago
  45. ed4ca82 #5101: add back tests to test_funcattrs that were lost during unittest conversion, and make some PEP8 cleanups. by Georg Brandl · 16 years ago
  46. e7e941e test_platform fails on OS X Snow Leopard because the UNIX command to get the by Brett Cannon · 16 years ago
  47. ffd0dc1 Sorry, sorry! Ignore my previous two commits. I mixed up the version by Armin Rigo · 16 years ago
  48. f866fbb Does not terminate: consume all memory without responding to Ctrl-C. by Armin Rigo · 16 years ago
  49. f416690 Found the next crasher by thinking about this logic in PyPy. by Armin Rigo · 16 years ago
  50. 6fcf9b5 remove the check that classmethod's argument is a callable by Benjamin Peterson · 16 years ago
  51. fff896b #6750: TextIOWrapped could duplicate output when several threads write to it. by Amaury Forgeot d'Arc · 16 years ago
  52. f7cda52 Issue #6054: Do not normalize stored pathnames. by Lars Gustäbel · 16 years ago
  53. 7a7739d Issue #6794: Fix handling of NaNs in Decimal.compare_total and by Mark Dickinson · 16 years ago
  54. 429677e Issue 6654 by Kristján Valur Jónsson · 16 years ago
  55. e2a7798 issue 6275 by Kristján Valur Jónsson · 16 years ago
  56. 764fc23 #6693: New functions in site.py to get user/global site packages paths. by Tarek Ziadé · 16 years ago
  57. df75677 Add test of file.write(array) extracted from Jython. by Frank Wierzbicki · 16 years ago
  58. b98d6b2 Issue 6665: Fix fnmatch to properly match filenames with newlines in them. by Gregory P. Smith · 16 years ago
  59. c0ba828 better col_offsets for "for" statements with tuple unpacking #6704 by Benjamin Peterson · 16 years ago
  60. 4c6e808 #6707 fix a crash with dir() on an uninitialized module by Benjamin Peterson · 16 years ago
  61. 764465f Expat could crash if given the wrong kind of input by never stopping its by Brett Cannon · 16 years ago
  62. c4ad034 Fix issue1628205: Socket file objects returned by socket.socket.makefile() now by Gregory P. Smith · 16 years ago
  63. 20e1f93 Issue #6629: Fix a data corruption issue in the new `io` package, which could by Antoine Pitrou · 16 years ago
  64. 8fdab95 Issue 6637: defaultdict.copy() failed with an empty factory. by Raymond Hettinger · 16 years ago
  65. 6c0f337 Adding tests derived from the Jython project. These are primarily tests of by Frank Wierzbicki · 16 years ago
  66. 4326ad8 Issue #6595: Allow Decimal constructor to accept non-European decimal by Mark Dickinson · 16 years ago
  67. 3e5b027 #6511: ZipFile will now raise BadZipfile when opening an empty or tiny file, by Amaury Forgeot d'Arc · 16 years ago
  68. e55df1f "Fix" for the refleak report: the ABC classes are now in the _pyio module by Amaury Forgeot d'Arc · 16 years ago
  69. fe67bd9 Issue #6561: '\d' regular expression should not match characters of by Mark Dickinson · 16 years ago
  70. c2b9e1a Issue 6573: Fix set.union() for cases where self is in the argument chain. by Raymond Hettinger · 16 years ago
  71. 74b3016 #6553: crash in cPickle.load(), when given a StringIO with incomplete data. by Amaury Forgeot d'Arc · 16 years ago
  72. 46ca2f2 Backport of fix for issue 6542: make sure by R. David Murray · 16 years ago
  73. ec812ca Issue #6540: Fixed crash for bytearray.translate() with invalid parameters. by Georg Brandl · 16 years ago
  74. 4879c90 the Slice in x[::] has to have step as None to help the interpreter by Benjamin Peterson · 16 years ago
  75. 6d75590 http://bugs.python.org/issue6499 by Kristján Valur Jónsson · 16 years ago
  76. d7b0eeb split unittest.py into a package by Benjamin Peterson · 16 years ago
  77. 5fee460 Fix for issue5102, timeout value propages between redirects, proxy, digest and by Senthil Kumaran · 16 years ago
  78. 88a0a2e Issue #6431: Fix Fraction comparisons with unknown types, and with by Mark Dickinson · 16 years ago
  79. e78e5d2 Issue #6415: Fixed warnings.warn sagfault on bad formatted string. by Hirokazu Yamamoto · 16 years ago
  80. 7530e47 Issue 6433: multiprocessing.pool.map hangs on empty list by Jesse Noller · 16 years ago
  81. d77faaf #5910: fix kqueue for calls with more than one event. by Georg Brandl · 16 years ago
  82. d5a23e3 methods' names pep8ification by Ezio Melotti · 16 years ago
  83. 91dcd93 Move TestRunner initialisation into unittest.TestProgram.runTests. Fixes issue 6418. by Michael Foord · 16 years ago
  84. 0369ba2 http://bugs.python.org/issue6267 Add more tests for the xlmrpc.ServerProxy by Kristján Valur Jónsson · 16 years ago
  85. 9bd39c1 put downloaded test support files in Lib/test/data instead of the cwd by Benjamin Peterson · 16 years ago
  86. 74b8d33 #2622 Import errors in email.message, from a py2app standalone application. by Amaury Forgeot d'Arc · 16 years ago
  87. 9175742 Add basic tests for the return value of os.popen().close(). by Amaury Forgeot d'Arc · 16 years ago
  88. ef6007c http://bugs.python.org/issue6460 by Kristján Valur Jónsson · 16 years ago
  89. 6cbfc12 more cleanups and if zlib -> skipUnless(zlib) by Ezio Melotti · 16 years ago
  90. ce32eb7 #6416: Fix compilation of the select module on Windows, as well as test_subprocess: by Amaury Forgeot d'Arc · 16 years ago
  91. b0c828a Try to fix Solaris buildbot rmtree failure in test_getcwd_long_pathnames by R. David Murray · 16 years ago
  92. 6fcf7ca Temporarily ignore rmtree errors in test_getcwd_long_pathnames to see by R. David Murray · 16 years ago
  93. 573399a Curdir needs to be in the path for the test to work on all buildbots. by R. David Murray · 16 years ago
  94. fbf2cc4 Specify umask in execute bit test to get consistent results by R. David Murray · 16 years ago
  95. 00e1f63 Make test work with -O. by R. David Murray · 16 years ago
  96. 8a624a9 Conditionalize test cleanup code to eliminate traceback, which will by R. David Murray · 16 years ago
  97. 5fd3af2 Issue #1523: Remove deprecated overflow masking in struct module, and by Mark Dickinson · 16 years ago
  98. bb3895c Expand test coverage for struct.pack with native integer packing; by Mark Dickinson · 16 years ago
  99. ca6b5f3 Add skipping to struct test that only applies when overflow masking is in effect by Mark Dickinson · 16 years ago
  100. 23a736a Issue 6070: when creating a compiled file, after copying the mode bits, on by R. David Murray · 16 years ago