1. 5b4faae Issue #13992: The trashcan mechanism is now thread-safe. This eliminates by Antoine Pitrou · 12 years ago
  2. 56cd62c Issue #13992: The trashcan mechanism is now thread-safe. This eliminates by Antoine Pitrou · 12 years ago
  3. 11946fb Issue #15841: The readable(), writable() and seekable() methods of BytesIO by Antoine Pitrou · 12 years ago
  4. 1d85745 Issue #15841: The readable(), writable() and seekable() methods of BytesIO by Antoine Pitrou · 12 years ago
  5. 3561901 #15557,#15447,#15509: webbrowser test suite added. by R David Murray · 12 years ago
  6. 02ca144 #15447: Use subprocess.DEVNULL in webbrowser, instead of opening by R David Murray · 12 years ago
  7. d674a77 Merge #15509: If %action substitution produces a null string, drop it. by R David Murray · 12 years ago
  8. 94dd7cb #15509: If %action substitution produces a null string, drop it. by R David Murray · 12 years ago
  9. bd0df50 get rid of ast_error_finish by passing the compiling struct to ast_error by Benjamin Peterson · 12 years ago
  10. c7f447c merge 3.2 (#15846) by Benjamin Peterson · 12 years ago
  11. 2e2c903 prevert ast errors from being normalized before ast_error_finish is called (closes #15846) by Benjamin Peterson · 12 years ago
  12. 6a42bd6 Make super() internal errors RuntimeError instead of SystemError (closes #15839) by Benjamin Peterson · 12 years ago
  13. 6f858a2 #15802: Fix test logic in TestMaildir.test_create_tmp by Petri Lehtinen · 12 years ago
  14. 1c371b2 #15802: Fix test logic in TestMaildir.test_create_tmp by Petri Lehtinen · 12 years ago
  15. 64b0ef1 Merge #12776,#11839: call argparse type function only once. by R David Murray · 12 years ago
  16. 6fb8fb1 #12776,#11839: call argparse type function only once. by R David Murray · 12 years ago
  17. f7d176e Issue #15828: Don't try to close a file if imp.find_module() doesn't return one. by Brett Cannon · 12 years ago
  18. 5d06124 Issue #15828: Restore support for C extension modules in imp.load_module() by Nick Coghlan · 12 years ago
  19. 2a021c8 Issue #15800: fix the closing of input / output files when gzip is used as a script. by Antoine Pitrou · 12 years ago
  20. ecc4757 Issue #15800: fix the closing of input / output files when gzip is used as a script. by Antoine Pitrou · 12 years ago
  21. 1d39cde Issue #15785: Modify window.get_wch() API of the curses module: return a by Victor Stinner · 12 years ago
  22. 4e07a8c merge heads by Benjamin Peterson · 12 years ago
  23. 59043f9 merge 3.2 (#15801) by Benjamin Peterson · 12 years ago
  24. 28a6cfa use the stricter PyMapping_Check (closes #15801) by Benjamin Peterson · 12 years ago
  25. ea62bd5 Issue #15784: Modify OSError.__str__() to better distinguish between by Richard Oudkerk · 12 years ago
  26. 5b9eccb Issue #15794: Relax a test case due to the deadlock detection's conservativeness. by Antoine Pitrou · 12 years ago
  27. 4f0338c Issue #15781: Fix two small race conditions in import's module locking. by Antoine Pitrou · 12 years ago
  28. 4ab4ec2 Bump to 3.3.0rc1. by Georg Brandl · 12 years ago
  29. d183f0b Update pydoc topics and suspicious markup file. by Georg Brandl · 12 years ago
  30. cc0274b merge with 3.2 by Georg Brandl · 12 years ago
  31. c8076df Fix wrong way of adding Error information in shutil.copytree. by Georg Brandl · 12 years ago
  32. 06e1ab0 Close #15573: use value-based memoryview comparisons (patch by Stefan Krah) by Nick Coghlan · 12 years ago
  33. 12c6bda Issue #15316: Let exceptions raised during imports triggered by the by Brett Cannon · 12 years ago
  34. 6f64796 Remove overeager test (don't depend on the sign of a nan; cf. issue #14521) by Mark Dickinson · 12 years ago
  35. a6894ba Reverted change to venv initialisation. by Vinay Sajip · 12 years ago
  36. 448f577 Remove incorrect lines (meant for cdecimal) from recently added Decimal tests. by Mark Dickinson · 12 years ago
  37. e4204bc Issue #15544: Fix Decimal.__float__ to work with payload-carrying NaNs. by Mark Dickinson · 12 years ago
  38. fc33d4c Issue #15544: Fix Decimal.__float__ to work with payload-carrying NaNs. by Mark Dickinson · 12 years ago
  39. ba0a3ed Issue #2051: Tweak last commit for this issue to pass in mode instead by Brett Cannon · 12 years ago
  40. 07c6e71 Issue #15778: Coerce ImportError.args to a string when it isn't already one. by Brett Cannon · 12 years ago
  41. 491b1dc Closes #9374: merge with 3.2 by Georg Brandl · 12 years ago
  42. a61b09f Closes #9374: add back now-unused module attributes; removing them is a backward compatibility issue, since they have a public-seeming name. by Georg Brandl · 12 years ago
  43. 82649f3 Issue #15776: Allow pyvenv to work in existing directory with --clean. by Andrew Svetlov · 12 years ago
  44. ad2a7d5 Merge #15249: Mangle From lines correctly when body contains invalid bytes. by R David Murray · 12 years ago
  45. 638d40b #15249: Mangle From lines correctly when body contains invalid bytes. by R David Murray · 12 years ago
  46. a508770 Close #2501: Permission bits are once again correctly copied from the source file to the cached bytecode file. Test by Eric Snow. by Nick Coghlan · 12 years ago
  47. 66e6317 Issue #15770: Check invalid arguments in test function. Patch by Victor Stinner. by Stefan Krah · 12 years ago
  48. f9bd914 Issue #665194: Added a small optimization by Alexander Belopolsky · 12 years ago
  49. 1f924d2 Added test for a bug fixed in issue #665194. by Alexander Belopolsky · 12 years ago
  50. 097a120 #665194: fix variable name in exception code path. by R David Murray · 12 years ago
  51. b8687df #665194: Update email.utils.localtime to use astimezone, and fix bug. by R David Murray · 12 years ago
  52. 75959cf Issue #15747: skip chflags UF_IMMUTABLE tests if EOPNOTSUPP is raised. by Trent Nelson · 12 years ago
  53. ee253eb Issue #15747: skip chflags UF_IMMUTABLE tests if EOPNOTSUPP is raised. by Trent Nelson · 12 years ago
  54. b9717b5 #15752: merge with 3.2. by Ezio Melotti · 12 years ago
  55. 1b47bf4 #15752: s/assertRaisesRegexp/assertRaisesRegex/g by Ezio Melotti · 12 years ago
  56. 5b27c53 Merge 3.2. by Stefan Krah · 12 years ago
  57. 7cacd2e Issue #15736: Fix overflow in _PySequence_BytesToCharpArray(). by Stefan Krah · 12 years ago
  58. 139cd43 Issue #15285: Refactor connect timeout test in test_timeout. by Trent Nelson · 12 years ago
  59. 514dbb0 Issue #15285: Refactor connect timeout test in test_timeout. by Trent Nelson · 12 years ago
  60. 77ebfcc Fix Issue 15743 - improve urllib tests by removing deprecated method usages. Patch by Jeff Knupp. by Senthil Kumaran · 12 years ago
  61. df9c945 #15199: Fix JavaScript's default MIME type to application/javascript by Petri Lehtinen · 12 years ago
  62. c6fdafc #15199: Fix JavaScript's default MIME type to application/javascript by Petri Lehtinen · 12 years ago
  63. 8bd24fe Issue #12643: Respect sys.excepthook in code.InteractiveConsole by Nick Coghlan · 12 years ago
  64. c0c03be Merge 3.2. by Stefan Krah · 12 years ago
  65. db579d7 Issue #15738: Fix a missing NULL check in subprocess_fork_exec(). by Stefan Krah · 12 years ago
  66. 6adf243 Merge 3.2. by Stefan Krah · 12 years ago
  67. fd24f9e Issue #15732: Fix (constructed) crash in _PySequence_BytesToCharpArray(). by Stefan Krah · 12 years ago
  68. 48fec05 Close #14846: Handle a sys.path entry going away by Nick Coghlan · 12 years ago
  69. db7920b Close #14814: Avoid depending on struct by using newer features. Also use enumerate where appropriate (patch by Serhiy Storchaka). Declaring PEP 3144 final at this point - any further changes to code or docs can go in new issues. by Nick Coghlan · 12 years ago
  70. a8517ad Issue #14814: document the Interface APIs and fix various problems with the string representations (initial patch by Eli Bendersky). by Nick Coghlan · 12 years ago
  71. 749bd42 Merge #13579: teach string.Formatter about 'a'. by R David Murray · 12 years ago
  72. e56bf97 #13579: teach string.Formatter about 'a'. by R David Murray · 12 years ago
  73. a19de80 Issue #15595: Fix subprocess.Popen(universal_newlines=True) by Andrew Svetlov · 12 years ago
  74. 8286071 Issue #15595: Fix subprocess.Popen(universal_newlines=True) by Andrew Svetlov · 12 years ago
  75. 377a152 Use Thread.is_alive() instead of old-style Thread.isAlive() in subprocess. by Andrew Svetlov · 12 years ago
  76. 47ec25d Brush subprocess tests a bit. by Andrew Svetlov · 12 years ago
  77. 4d16bcc The latest NumPy revision no longer segfaults here. by Stefan Krah · 12 years ago
  78. aaf8e2e Fix out-of-date comment in test_memoryview. by Stefan Krah · 12 years ago
  79. dbcae3c Issue #15615: Add some tests for the json module's handling of invalid input data. by Antoine Pitrou · 12 years ago
  80. b47ea9a Issue #15615: Add some tests for the json module's handling of invalid input data. by Antoine Pitrou · 12 years ago
  81. 35fa864 Issue #15477: Merge fix from 3.2 by Mark Dickinson · 12 years ago
  82. 05d79e9 Issue #15477: Add workaround for log1p(-0.0) on platforms where it's broken. by Mark Dickinson · 12 years ago
  83. 5c3ddc8 Closes #15632: regrtest.py: fix spurious refleaks due to various caches by Stefan Krah · 12 years ago
  84. 6aaa03a Issue #15678: Fix menu customization for IDLE started from OS X by Ned Deily · 12 years ago
  85. 7385adc Issue #15715: Ignore failed imports triggered by the use of fromlist. by Brett Cannon · 12 years ago
  86. 943c5b3 Fix subprocess test broken on Windows by Andrew Svetlov · 12 years ago
  87. 04ec8ce Issue #14669: Fix pickling of connections and sockets on MacOSX by Richard Oudkerk · 12 years ago
  88. 69a06dd #11062: Fix universal newline support in Babyl._install_message() by Petri Lehtinen · 12 years ago
  89. 8861494 #11062: Fix universal newline support in Babyl._install_message() by Petri Lehtinen · 12 years ago
  90. 5395d2f Add yet another test for subprocess.Popen.communicate by Andrew Svetlov · 12 years ago
  91. 592df20 Cleanup universal_newlines usage for subprocess.Popen, remove unused param. by Andrew Svetlov · 12 years ago
  92. aae61b8 #11062: Fix adding a message from file to Babyl mailbox by Petri Lehtinen · 12 years ago
  93. 3d12c43 #11062: Fix adding a message from file to Babyl mailbox by Petri Lehtinen · 12 years ago
  94. 7f84833 Merge #15269: document dircmp.left and right, and add tests for them. by R David Murray · 12 years ago
  95. 2b209cd #15269: document dircmp.left and right, and add tests for them. by R David Murray · 12 years ago
  96. aa0dbdc Issue #15592. Fix regression: subprocess.communicate() breaks on no input with universal newlines true. by Andrew Svetlov · 12 years ago
  97. f376507 Add test to explicit check the absence regression in subprocess (issue #15592). by Andrew Svetlov · 12 years ago
  98. 3165a75 Merge 3.2 by Richard Oudkerk · 12 years ago
  99. e88a244 Issue #15646: Prevent equivalent of a fork bomb when using multiprocessing by Richard Oudkerk · 12 years ago
  100. 835df52 Merge 3.2 by Brian Curtin · 12 years ago