1. d0c3515 Issue #2183: Simplify and optimize bytecode for list comprehensions. by Antoine Pitrou · 16 years ago
  2. 31949b9 #3954: Fix error handling code in _hotshot.logreader by Amaury Forgeot d'Arc · 16 years ago
  3. 6806001 Issue #4197: Fix the remaining part of the doctest-in-zipfile problem by giving linecache access to the module globals when available by Nick Coghlan · 16 years ago
  4. cc5b64a modify other occurrence of test_bad_address by Antoine Pitrou · 16 years ago
  5. 122388a try to fix failure in test_bad_address on some buildbots by Antoine Pitrou · 16 years ago
  6. 655fbf1 Backport r67759 (fix io.IncrementalNewlineDecoder for UTF-16 et al.). by Antoine Pitrou · 16 years ago
  7. bbba3f0 Add file that was missed from r67750 by Nick Coghlan · 16 years ago
  8. a205347 Fix several issues relating to access to source code inside zipfiles. Initial work by Alexander Belopolsky. See Misc/NEWS in this checkin for details. by Nick Coghlan · 16 years ago
  9. 74af3bb Issue #4163: Use unicode-friendly word splitting in the textwrap functions when given an unicode string. by Antoine Pitrou · 16 years ago
  10. 3b02742 Issue #4616: TarFile.utime(): Restore directory times on Windows. by Lars Gustäbel · 16 years ago
  11. e29d435 Issue #4084: Fix max, min, max_mag and min_mag Decimal methods to by Facundo Batista · 16 years ago
  12. ad9b599 #4559: When a context manager's __exit__() method returns an object whose by Amaury Forgeot d'Arc · 16 years ago
  13. 1868d7c Add simple unittests for Request by Jeremy Hylton · 16 years ago
  14. 2d873bd Issue 4597: Fix several cases in EvalFrameEx where an exception could be by Jeffrey Yasskin · 16 years ago
  15. ae5bece Issue #4509: bugs in bytearray with exports (buffer protocol) by Antoine Pitrou · 16 years ago
  16. 826f3fe Issue #4445: save 3 bytes (on average, on a typical machine) per by Mark Dickinson · 16 years ago
  17. fe879e8 #4529: fix parser's validation for try-except-finally statements. by Georg Brandl · 16 years ago
  18. a07435d #4458: recognize "-" as an argument, not a malformed option in gnu_getopt(). by Georg Brandl · 16 years ago
  19. 2657680 rename the new check_call_output to check_output. its less ugly. by Gregory P. Smith · 16 years ago
  20. 97f49f4 Adds a subprocess.check_call_output() function to return the output from a by Gregory P. Smith · 16 years ago
  21. 5248103 Issue #1055234: cgi.parse_header(): Fixed parsing of header parameters to by Fred Drake · 16 years ago
  22. 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 · 16 years ago
  23. 7989a4d Backport r67478 by Raymond Hettinger · 16 years ago
  24. 21d2e59 Reflow long lines. by Jeremy Hylton · 16 years ago
  25. 8942011 Add unittests that verify documented behavior of public methods in Transport by Jeremy Hylton · 16 years ago
  26. 9dfe6a8 #4396 make the parser module correctly validate the with syntax by Benjamin Peterson · 16 years ago
  27. bfc5156 backport r67325: make FileIO.mode always contain 'b' by Benjamin Peterson · 16 years ago
  28. c078f92 don't segfault when \N escapes are used and unicodedata fails to load by Benjamin Peterson · 16 years ago
  29. 3226565 Fixed issue #4233. by Amaury Forgeot d'Arc · 16 years ago
  30. ad100c3 backport r67300 by Benjamin Peterson · 16 years ago
  31. d3b5a79 oops! didn't mean to disable that test by Benjamin Peterson · 16 years ago
  32. 46cc6d1 make sure that bytearray methods return a new bytearray even if there is no change by Benjamin Peterson · 16 years ago
  33. 7cfe7ea #4317: Fix an Array Bounds Read in imageop.rgb2rgb8. by Amaury Forgeot d'Arc · 16 years ago
  34. 273c233 when __getattr__ is a descriptor, call it correctly; fixes #4230 by Benjamin Peterson · 16 years ago
  35. 2c98faa check for assignment to __debug__ during AST generation by Benjamin Peterson · 16 years ago
  36. 81e92e5 move a FileIO test to test_fileio by Benjamin Peterson · 16 years ago
  37. 6624a9f #4048 make the parser module accept relative imports as valid by Benjamin Peterson · 16 years ago
  38. dcee09d make sure the parser flags and passed onto the compiler by Benjamin Peterson · 16 years ago
  39. ab5f879 Issue #4237: io.FileIO() was raising invalid warnings caused by insufficient initialization of PyFileIOObject struct members. by Christian Heimes · 16 years ago
  40. 69a9c5b Issue #4176: Pickle would crash the interpreter when a __reduce__ function by Amaury Forgeot d'Arc · 16 years ago
  41. 1fac5a4 Fixed a modulefinder crash on certain relative imports. by Thomas Heller · 16 years ago
  42. 581eb1e Fix one of the tests: it relied on being present in an "output test" in by Armin Rigo · 16 years ago
  43. 260f5ba add forgotten test for r67030 by Benjamin Peterson · 16 years ago
  44. bdca942 fix __future__ imports when multiple features are given by Benjamin Peterson · 16 years ago
  45. 399b1fe give a py3k warning when 'nonlocal' is used as a variable name by Benjamin Peterson · 16 years ago
  46. 592c275 Issue #4183: Some tests didn't run with pickle.HIGHEST_PROTOCOL. by Hirokazu Yamamoto · 16 years ago
  47. fbc0b0c #4157 move two test functions out of platform.py. by Amaury Forgeot d'Arc · 16 years ago
  48. 77c2f93 make sure to call iteritems() by Benjamin Peterson · 16 years ago
  49. 76f71a5 give poplib a real test suite by Benjamin Peterson · 16 years ago
  50. f3776a1 #3935: properly support list subclasses in the C impl. of bisect. by Georg Brandl · 16 years ago
  51. d78b9dc #4069: aSet.remove(otherSet) would always report the empty frozenset([]) as the missing key. by Amaury Forgeot d'Arc · 16 years ago
  52. 39defbe more intensive test on dbm. by Hirokazu Yamamoto · 16 years ago
  53. 7d9d7a2 save/restore stdout/stderr instead of relying on __*__ versions by Skip Montanaro · 16 years ago
  54. 0d8372b Simplify individual tests by defining setUp and tearDown methods. by Skip Montanaro · 16 years ago
  55. 18c4e87 More strict test. Consider the case sys.executable itself is symlink. by Hirokazu Yamamoto · 16 years ago
  56. 6e5e501 Added the test for issue3762. by Hirokazu Yamamoto · 16 years ago
  57. 081bb45 Typo fix by Andrew M. Kuchling · 16 years ago
  58. b7df32e Fixed following error when DocXMLRPCServer failed. by Hirokazu Yamamoto · 16 years ago
  59. bf24401 fix for issue 3862: test_array fails FreeBSD 7 amd64 by Andrew MacIntyre · 16 years ago
  60. 0806749 Works around issue3863: freebsd4/5/6 and os2emx are known to have OS bugs when by Gregory P. Smith · 16 years ago
  61. 8d77d44 fix security issue 2: imageop's poor validation of arguments could result in segfaults by Benjamin Peterson · 16 years ago
  62. 37040cd issue3770: if SEM_OPEN is 0, disable the mp.synchronize module, rev. Nick Coghlan, Damien Miller by Jesse Noller · 16 years ago
  63. eb257ac fix for release blocker 3910, 2.6 regression in socket.ssl method by Bill Janssen · 16 years ago
  64. b2d61bd The _lsprof module could crash the interpreter if it was given an external by Brett Cannon · 16 years ago
  65. e14267b merge in the fix for test_ftplib on some bots [reviewed by Georg] by Benjamin Peterson · 16 years ago
  66. 003d746 enable refactor tests by Benjamin Peterson · 16 years ago
  67. 3c0c483 give ftplib a real test suite by Benjamin Peterson · 16 years ago
  68. fc5ea39 #3967: Correct a crash in count() and find() methods of string-like objects. by Amaury Forgeot d'Arc · 16 years ago
  69. 6ee7bc0 Fix namedtuple bug reported by Glenn Linderman. Template did not form correctly if the field names were input in Unicode. by Raymond Hettinger · 16 years ago
  70. 17617a0 #3965: on Windows, open() crashes if the filename or the mode is invalid, by Amaury Forgeot d'Arc · 16 years ago
  71. a74d675 backport the atexit test for r66563 by Benjamin Peterson · 16 years ago
  72. 41c56b5 build_os2emx.patch in issue 3868 - update OS/2 EMX makefile and config files by Andrew MacIntyre · 16 years ago
  73. 2c7470d #3879 fix a regression in urllib.getproxies_environment by Benjamin Peterson · 16 years ago
  74. 56d380d Issue #3838: TarFile object assigned to self.tar should be closed explicitly. by Hirokazu Yamamoto · 16 years ago
  75. 8c2b7dc fix possible integer overflows in _hashopenssl #3886 by Benjamin Peterson · 16 years ago
  76. 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 · 16 years ago
  77. 4dd3a50 Read unidata_version from unicodedata module. by Martin v. Löwis · 16 years ago
  78. 6d5ec24 Update to test Unicode 5.1. by Martin v. Löwis · 16 years ago
  79. e3c4fd9 - Issue #3629: Fix sre "bytecode" validator for an end case. by Guido van Rossum · 16 years ago
  80. 24329ba Issue #3811: The Unicode database was updated to 5.1. by Martin v. Löwis · 16 years ago
  81. 97179b0 Fix #3634 invalid return value from _weakref.ref(Exception).__init__ by Benjamin Peterson · 16 years ago
  82. 844f741 Issue #3809: Fixed spurious 'test.blah' file left behind by test_logging. by Vinay Sajip · 16 years ago
  83. d3ffb89 #3777: long(4.2) returned an int, and broke backward compatibility. by Amaury Forgeot d'Arc · 16 years ago
  84. 672237d warnings.catch_warnings() now returns a list or None instead of the custom by Brett Cannon · 16 years ago
  85. 631be01 Issue #3806: LockTests in test_imp should be skipped when thread is not available. by Hirokazu Yamamoto · 16 years ago
  86. 74ce88f Issue #3804: Added test for Issue #2222. Reviewed by Benjamin Peterson. by Hirokazu Yamamoto · 16 years ago
  87. 61c001a incorporate fixes from issue 3162; SSL doc patch by Bill Janssen · 16 years ago
  88. ace0bcf Issue 3801. Fixing a dumb error in the deprecated parse_qsl() by Facundo Batista · 16 years ago
  89. a853a89 fix missing module by Benjamin Peterson · 16 years ago
  90. feb8cad #3796: A test class was not run in test_float. Reviewed by Benjamin. by Amaury Forgeot d'Arc · 16 years ago
  91. 187ac1b #3601: test_unicode.test_raiseMemError fails in UCS4 by Antoine Pitrou · 16 years ago
  92. 32476fc Deprecate bsddb for removal in Python 3.0. by Brett Cannon · 16 years ago
  93. 65d66e1 Issue #3772: Fixed regression problem in StreamHandler.emit(). by Vinay Sajip · 16 years ago
  94. a0b7444 test_py3kwarn had been overlooked when test.test_support.catch_warning() was by Brett Cannon · 16 years ago
  95. c585df9 Issue 600362: Relocated parse_qs() and parse_qsl(), from the cgi module by Facundo Batista · 16 years ago
  96. 6a2fd81 Issue #3726: Allowed spaces in separators in logging configuration files. by Vinay Sajip · 16 years ago
  97. 3e7dd78 Issue #3759: test_asyncore.py leaked handle. Reviewed by Amaury Forgeot d'Arc by Hirokazu Yamamoto · 16 years ago
  98. d712203 Issue #3708: os.urandom no longer goes into an infinite loop when passed a by Gregory P. Smith · 16 years ago
  99. 1eaf074 Move test.test_support.catch_warning() to the warnings module, rename it by Brett Cannon · 16 years ago
  100. 973e6c2 remove py3k warnings about the threading api; update docs by Benjamin Peterson · 16 years ago