1. 2d873bd Issue 4597: Fix several cases in EvalFrameEx where an exception could be by Jeffrey Yasskin · 17 years ago
  2. ae5bece Issue #4509: bugs in bytearray with exports (buffer protocol) by Antoine Pitrou · 17 years ago
  3. 826f3fe Issue #4445: save 3 bytes (on average, on a typical machine) per by Mark Dickinson · 17 years ago
  4. fe879e8 #4529: fix parser's validation for try-except-finally statements. by Georg Brandl · 17 years ago
  5. a07435d #4458: recognize "-" as an argument, not a malformed option in gnu_getopt(). by Georg Brandl · 17 years ago
  6. 2657680 rename the new check_call_output to check_output. its less ugly. by Gregory P. Smith · 17 years ago
  7. 97f49f4 Adds a subprocess.check_call_output() function to return the output from a by Gregory P. Smith · 17 years ago
  8. 5248103 Issue #1055234: cgi.parse_header(): Fixed parsing of header parameters to by Fred Drake · 17 years ago
  9. 213faca Issue #4384: Added logging integration with warnings module using captureWarnings(). This change includes a NullHandler which does nothing; it will be of use to library developers who want to avoid the "No handlers could be found for logger XXX" message which can appear if the library user doesn't configure logging. by Vinay Sajip · 17 years ago
  10. 7989a4d Backport r67478 by Raymond Hettinger · 17 years ago
  11. 21d2e59 Reflow long lines. by Jeremy Hylton · 17 years ago
  12. 8942011 Add unittests that verify documented behavior of public methods in Transport by Jeremy Hylton · 17 years ago
  13. 9dfe6a8 #4396 make the parser module correctly validate the with syntax by Benjamin Peterson · 17 years ago
  14. bfc5156 backport r67325: make FileIO.mode always contain 'b' by Benjamin Peterson · 17 years ago
  15. c078f92 don't segfault when \N escapes are used and unicodedata fails to load by Benjamin Peterson · 17 years ago
  16. 3226565 Fixed issue #4233. by Amaury Forgeot d'Arc · 17 years ago
  17. ad100c3 backport r67300 by Benjamin Peterson · 17 years ago
  18. d3b5a79 oops! didn't mean to disable that test by Benjamin Peterson · 17 years ago
  19. 46cc6d1 make sure that bytearray methods return a new bytearray even if there is no change by Benjamin Peterson · 17 years ago
  20. 7cfe7ea #4317: Fix an Array Bounds Read in imageop.rgb2rgb8. by Amaury Forgeot d'Arc · 17 years ago
  21. 273c233 when __getattr__ is a descriptor, call it correctly; fixes #4230 by Benjamin Peterson · 17 years ago
  22. 2c98faa check for assignment to __debug__ during AST generation by Benjamin Peterson · 17 years ago
  23. 81e92e5 move a FileIO test to test_fileio by Benjamin Peterson · 17 years ago
  24. 6624a9f #4048 make the parser module accept relative imports as valid by Benjamin Peterson · 17 years ago
  25. dcee09d make sure the parser flags and passed onto the compiler by Benjamin Peterson · 17 years ago
  26. ab5f879 Issue #4237: io.FileIO() was raising invalid warnings caused by insufficient initialization of PyFileIOObject struct members. by Christian Heimes · 17 years ago
  27. 69a9c5b Issue #4176: Pickle would crash the interpreter when a __reduce__ function by Amaury Forgeot d'Arc · 17 years ago
  28. 1fac5a4 Fixed a modulefinder crash on certain relative imports. by Thomas Heller · 17 years ago
  29. 581eb1e Fix one of the tests: it relied on being present in an "output test" in by Armin Rigo · 17 years ago
  30. 260f5ba add forgotten test for r67030 by Benjamin Peterson · 17 years ago
  31. bdca942 fix __future__ imports when multiple features are given by Benjamin Peterson · 17 years ago
  32. 399b1fe give a py3k warning when 'nonlocal' is used as a variable name by Benjamin Peterson · 17 years ago
  33. 592c275 Issue #4183: Some tests didn't run with pickle.HIGHEST_PROTOCOL. by Hirokazu Yamamoto · 17 years ago
  34. fbc0b0c #4157 move two test functions out of platform.py. by Amaury Forgeot d'Arc · 17 years ago
  35. 77c2f93 make sure to call iteritems() by Benjamin Peterson · 17 years ago
  36. 76f71a5 give poplib a real test suite by Benjamin Peterson · 17 years ago
  37. f3776a1 #3935: properly support list subclasses in the C impl. of bisect. by Georg Brandl · 17 years ago
  38. d78b9dc #4069: aSet.remove(otherSet) would always report the empty frozenset([]) as the missing key. by Amaury Forgeot d'Arc · 17 years ago
  39. 39defbe more intensive test on dbm. by Hirokazu Yamamoto · 17 years ago
  40. 7d9d7a2 save/restore stdout/stderr instead of relying on __*__ versions by Skip Montanaro · 17 years ago
  41. 0d8372b Simplify individual tests by defining setUp and tearDown methods. by Skip Montanaro · 17 years ago
  42. 18c4e87 More strict test. Consider the case sys.executable itself is symlink. by Hirokazu Yamamoto · 17 years ago
  43. 6e5e501 Added the test for issue3762. by Hirokazu Yamamoto · 17 years ago
  44. 081bb45 Typo fix by Andrew M. Kuchling · 17 years ago
  45. b7df32e Fixed following error when DocXMLRPCServer failed. by Hirokazu Yamamoto · 17 years ago
  46. bf24401 fix for issue 3862: test_array fails FreeBSD 7 amd64 by Andrew MacIntyre · 17 years ago
  47. 0806749 Works around issue3863: freebsd4/5/6 and os2emx are known to have OS bugs when by Gregory P. Smith · 17 years ago
  48. 8d77d44 fix security issue 2: imageop's poor validation of arguments could result in segfaults by Benjamin Peterson · 17 years ago
  49. 37040cd issue3770: if SEM_OPEN is 0, disable the mp.synchronize module, rev. Nick Coghlan, Damien Miller by Jesse Noller · 17 years ago
  50. eb257ac fix for release blocker 3910, 2.6 regression in socket.ssl method by Bill Janssen · 17 years ago
  51. b2d61bd The _lsprof module could crash the interpreter if it was given an external by Brett Cannon · 17 years ago
  52. e14267b merge in the fix for test_ftplib on some bots [reviewed by Georg] by Benjamin Peterson · 17 years ago
  53. 003d746 enable refactor tests by Benjamin Peterson · 17 years ago
  54. 3c0c483 give ftplib a real test suite by Benjamin Peterson · 17 years ago
  55. fc5ea39 #3967: Correct a crash in count() and find() methods of string-like objects. by Amaury Forgeot d'Arc · 17 years ago
  56. 6ee7bc0 Fix namedtuple bug reported by Glenn Linderman. Template did not form correctly if the field names were input in Unicode. by Raymond Hettinger · 17 years ago
  57. 17617a0 #3965: on Windows, open() crashes if the filename or the mode is invalid, by Amaury Forgeot d'Arc · 17 years ago
  58. a74d675 backport the atexit test for r66563 by Benjamin Peterson · 17 years ago
  59. 41c56b5 build_os2emx.patch in issue 3868 - update OS/2 EMX makefile and config files by Andrew MacIntyre · 17 years ago
  60. 2c7470d #3879 fix a regression in urllib.getproxies_environment by Benjamin Peterson · 17 years ago
  61. 56d380d Issue #3838: TarFile object assigned to self.tar should be closed explicitly. by Hirokazu Yamamoto · 17 years ago
  62. 8c2b7dc fix possible integer overflows in _hashopenssl #3886 by Benjamin Peterson · 17 years ago
  63. d2e0938 Issue #3781: Final cleanup of warnings.catch_warnings and its usage in the test suite. Closes issue w.r.t. 2.6 (R: Brett Cannon) by Nick Coghlan · 17 years ago
  64. 4dd3a50 Read unidata_version from unicodedata module. by Martin v. Löwis · 17 years ago
  65. 6d5ec24 Update to test Unicode 5.1. by Martin v. Löwis · 17 years ago
  66. e3c4fd9 - Issue #3629: Fix sre "bytecode" validator for an end case. by Guido van Rossum · 17 years ago
  67. 24329ba Issue #3811: The Unicode database was updated to 5.1. by Martin v. Löwis · 17 years ago
  68. 97179b0 Fix #3634 invalid return value from _weakref.ref(Exception).__init__ by Benjamin Peterson · 17 years ago
  69. 844f741 Issue #3809: Fixed spurious 'test.blah' file left behind by test_logging. by Vinay Sajip · 17 years ago
  70. d3ffb89 #3777: long(4.2) returned an int, and broke backward compatibility. by Amaury Forgeot d'Arc · 17 years ago
  71. 672237d warnings.catch_warnings() now returns a list or None instead of the custom by Brett Cannon · 17 years ago
  72. 631be01 Issue #3806: LockTests in test_imp should be skipped when thread is not available. by Hirokazu Yamamoto · 17 years ago
  73. 74ce88f Issue #3804: Added test for Issue #2222. Reviewed by Benjamin Peterson. by Hirokazu Yamamoto · 17 years ago
  74. 61c001a incorporate fixes from issue 3162; SSL doc patch by Bill Janssen · 17 years ago
  75. ace0bcf Issue 3801. Fixing a dumb error in the deprecated parse_qsl() by Facundo Batista · 17 years ago
  76. a853a89 fix missing module by Benjamin Peterson · 17 years ago
  77. feb8cad #3796: A test class was not run in test_float. Reviewed by Benjamin. by Amaury Forgeot d'Arc · 17 years ago
  78. 187ac1b #3601: test_unicode.test_raiseMemError fails in UCS4 by Antoine Pitrou · 17 years ago
  79. 32476fc Deprecate bsddb for removal in Python 3.0. by Brett Cannon · 17 years ago
  80. 65d66e1 Issue #3772: Fixed regression problem in StreamHandler.emit(). by Vinay Sajip · 17 years ago
  81. a0b7444 test_py3kwarn had been overlooked when test.test_support.catch_warning() was by Brett Cannon · 17 years ago
  82. c585df9 Issue 600362: Relocated parse_qs() and parse_qsl(), from the cgi module by Facundo Batista · 17 years ago
  83. 6a2fd81 Issue #3726: Allowed spaces in separators in logging configuration files. by Vinay Sajip · 17 years ago
  84. 3e7dd78 Issue #3759: test_asyncore.py leaked handle. Reviewed by Amaury Forgeot d'Arc by Hirokazu Yamamoto · 17 years ago
  85. d712203 Issue #3708: os.urandom no longer goes into an infinite loop when passed a by Gregory P. Smith · 17 years ago
  86. 1eaf074 Move test.test_support.catch_warning() to the warnings module, rename it by Brett Cannon · 17 years ago
  87. 973e6c2 remove py3k warnings about the threading api; update docs by Benjamin Peterson · 17 years ago
  88. 3571fbf Issue #3751: str.rpartition would perform a left-partition when called with by Amaury Forgeot d'Arc · 17 years ago
  89. f22c26e #3703 unhelpful _fileio.FileIO error message when trying to open a directory by Benjamin Peterson · 17 years ago
  90. dcde494 A collection of crashers, all variants of the idea of issue #3720. by Armin Rigo · 17 years ago
  91. 0668c62 Issue #2534: speed up isinstance() and issubclass() by 50-70%, so as to by Antoine Pitrou · 17 years ago
  92. e39be53 Try to reduce the flakiness of this test by Neal Norwitz · 17 years ago
  93. 2a7767a Use bytes as return type from recv_bytes() methods. Not sure why this only by Neal Norwitz · 17 years ago
  94. 0c519b3 Fix problem reported by pychecker where AuthenticationError wasn't imported. by Neal Norwitz · 17 years ago
  95. 901e471 #3662: Fix segfault introduced when fixing memory leaks. by Neal Norwitz · 17 years ago
  96. 30de77b #3654: fix duplicate test method name. Review by Benjamin P. by Georg Brandl · 17 years ago
  97. 712ee92 generate py3k warnings on __getslice__, __delslice__, and __setslice__ by Benjamin Peterson · 17 years ago
  98. 69ed524 Fix bug 3625: test issues on 64bit windows. r=pitrou by Mark Hammond · 17 years ago
  99. 892429b Fix float.fromhex test to give additional information on failure. This by Mark Dickinson · 17 years ago
  100. cd3b74d Reverted r65900. See http://mail.python.org/pipermail/python-checkins/2008-August/073116.html by Hirokazu Yamamoto · 17 years ago