1. 1e86d01 #16549: merge with 3.2. by Ezio Melotti · 12 years ago
  2. 057bcb4 #16549: Make json.tool work again on Python 3 and add tests. Initial patch by Berker Peksag and Serhiy Storchaka. by Ezio Melotti · 12 years ago
  3. d7fed37 Cleanup json decoder: float() has builtin support of nan, +inf, -inf since Python 2.6 by Victor Stinner · 12 years ago
  4. 9f94b6d #16333: fix example in docstring. by Ezio Melotti · 12 years ago
  5. 1003144 #16333: use (",", ": ") as default separator when indent is specified to avoid trailing whitespace. Patch by Serhiy Storchaka. by Ezio Melotti · 12 years ago
  6. 57af3bf #16333: merge with 3.2. by Ezio Melotti · 12 years ago
  7. d654ded #16333: document a way to get rid of trailing whitespace when indent is used. by Ezio Melotti · 12 years ago
  8. bff98fe Issue #16464: reset Request's Content-Length header on .data change. by Andrew Svetlov · 12 years ago
  9. 185e7e9 #16559: merge with 3.3. by Ezio Melotti · 12 years ago
  10. c483034 #16559: merge with 3.2. by Ezio Melotti · 12 years ago
  11. 8c52370 #16559: Add more tests for the json module. Patch by Serhiy Storchaka. by Ezio Melotti · 12 years ago
  12. d27e05d Closes #16521: Improved error handling for basicConfig(), added tests for same. by Vinay Sajip · 12 years ago
  13. 073f067 Issue #16546: merge fix from 3.3 by Mark Dickinson · 12 years ago
  14. ded35ae Issue #16546: make ast.YieldFrom argument mandatory. by Mark Dickinson · 12 years ago
  15. ab56710 Issue #12848: The pure Python pickle implementation now treats object lengths as unsigned 32-bit integers, like the C implementation does. by Antoine Pitrou · 12 years ago
  16. 9982c53 Issue #12848: The pure Python pickle implementation now treats object lengths as unsigned 32-bit integers, like the C implementation does. by Antoine Pitrou · 12 years ago
  17. bf6ecf9 Issue #12848: The pure Python pickle implementation now treats object lengths as unsigned 32-bit integers, like the C implementation does. by Antoine Pitrou · 12 years ago
  18. 7fde5b3 Fix missing import (followup to #4473). by Antoine Pitrou · 12 years ago
  19. df204be Issue #16423: urllib.request now has support for ``data:`` URLs. by Antoine Pitrou · 12 years ago
  20. a833e0d Merge debug print removal with 3.3. by Ezio Melotti · 12 years ago
  21. 9ab09d1 Merge debug print removal with 3.2. by Ezio Melotti · 12 years ago
  22. 82e60de Remove debug print. by Ezio Melotti · 12 years ago
  23. f8eb15d Merged upstream changes. by Vinay Sajip · 12 years ago
  24. 70adf6f Closes #16519: Merged fix from 3.3. by Vinay Sajip · 12 years ago
  25. 27e4b60 Issue #16519: Used os.path.abspath, removed unnecessary code for executable_name. by Vinay Sajip · 12 years ago
  26. 8618d74 Issue #4473: Add a POP3.stls() to switch a clear-text POP3 session into an encrypted POP3 session, on supported servers. by Antoine Pitrou · 12 years ago
  27. 25cee19 Issue #4473: Add a POP3.capa() method to query the capabilities advertised by the POP3 server. by Antoine Pitrou · 12 years ago
  28. d89824b Issue #4473: Ensure the socket is shutdown cleanly in POP3.close(). by Antoine Pitrou · 12 years ago
  29. 8b9a8f3 #16306: merge with 3.3. by Ezio Melotti · 12 years ago
  30. 8a6d1fe #16306: merge with 3.2. by Ezio Melotti · 12 years ago
  31. a0dd22e #16306: report only the first unknown option and add more tests. Patch by Serhiy Storchaka. by Ezio Melotti · 12 years ago
  32. 32f4e6e #16309: avoid using deprecated method and turn docstring in a comment. by Ezio Melotti · 12 years ago
  33. 5a9d706 #16522: Add FAIL_FAST flag to doctest. by R David Murray · 12 years ago
  34. d675a2c Merge from 3.3: Improve str() and object.__str__() docs (issue #13538). by Chris Jerdonek · 12 years ago
  35. 5fae0e5 Improve str() and object.__str__() documentation (issue #13538). by Chris Jerdonek · 12 years ago
  36. 17fc44c Improve str() and object.__str__() documentation (issue #13538). by Chris Jerdonek · 12 years ago
  37. dd61c3b Do a better job of preserving the state of sys.modules. by Barry Warsaw · 12 years ago
  38. ed843b5 Do a better job of preserving the state of sys.modules. by Barry Warsaw · 12 years ago
  39. a210204 Merge test from issue #1160. by Antoine Pitrou · 12 years ago
  40. a34412a Merge test from issue #1160. by Antoine Pitrou · 12 years ago
  41. 39bdad8 Issue #1160: Fix compiling large regular expressions on UCS2 builds. by Antoine Pitrou · 12 years ago
  42. b72c109 - Issue #16514: Fix regression causing a traceback when sys.path[0] is None by Barry Warsaw · 12 years ago
  43. 82c1c78 - Issue #16514: Fix regression causing a traceback when sys.path[0] is None by Barry Warsaw · 12 years ago
  44. de0b962 Remove sys.platform == 'riscos' checks from some Python and test files. #16501 by Christian Heimes · 12 years ago
  45. 739e179 #7782: merge with 3.3. by Ezio Melotti · 12 years ago
  46. 4b26d55 #7782: merge with 3.2. by Ezio Melotti · 12 years ago
  47. 4a1fdcf #7782: add a test for test_iter. by Ezio Melotti · 12 years ago
  48. 5650e4f Issue #15627: Add the compile_source() method to importlib.abc.SourceLoader. by Brett Cannon · 12 years ago
  49. 195ad6c #16306: merge with 3.3. by Ezio Melotti · 12 years ago
  50. f7c709d #16306: merge with 3.2. by Ezio Melotti · 12 years ago
  51. 7c66319 #16306: Fix multiple error messages when unknown command line parameters where passed to the interpreter. Patch by Hieu Nguyen. by Ezio Melotti · 12 years ago
  52. 6a5fc4c #14313: zipfile now raises NotImplementedError when the compression type is unknown. by Ezio Melotti · 12 years ago
  53. d187726 Issue #10966: Remove the concept of unexpected skipped tests. by Brett Cannon · 12 years ago
  54. 8f1fefa Issue #16408: Fix file descriptors not being closed in error conditions in the zipfile module. by Antoine Pitrou · 12 years ago
  55. 8572da5 Issue #16408: Fix file descriptors not being closed in error conditions in the zipfile module. by Antoine Pitrou · 12 years ago
  56. 17babc5 Issue #16408: Fix file descriptors not being closed in error conditions in the zipfile module. by Antoine Pitrou · 12 years ago
  57. c3afba1 Issue #14631: Add a new :class:`weakref.WeakMethod` to simulate weak references to bound methods. by Antoine Pitrou · 12 years ago
  58. 658f352 #11981: remove duplicate line. Patch by Johan Euphrosine. by Ezio Melotti · 12 years ago
  59. 10f1981 Merge fix for #16489 from 3.3 by Brett Cannon · 12 years ago
  60. 56b4ca7 Issue #16489: Make it clearer that importlib.find_loader() requires by Brett Cannon · 12 years ago
  61. a4e3703 MERGE: Closes #16461: Wave library should be able to deal with 4GB wav files, and sample rate of 44100 Hz. by Jesus Cea · 12 years ago
  62. fc1a636 MERGE: Closes #16461: Wave library should be able to deal with 4GB wav files, and sample rate of 44100 Hz. by Jesus Cea · 12 years ago
  63. e4b86398 Closes #16461: Wave library should be able to deal with 4GB wav files, and sample rate of 44100 Hz. by Jesus Cea · 12 years ago
  64. 9d2e7e0 #16478: merge with 3.3. by Ezio Melotti · 12 years ago
  65. eb24b44 #16478: merge with 3.2. by Ezio Melotti · 12 years ago
  66. 103f17e #16478: use floor division in tabnanny and fix a ResourceWarning. Patch by Serhiy Storchaka. by Ezio Melotti · 12 years ago
  67. 73726aa Issue #16469: Fraction(float('nan')) and Fraction(float('inf')) now raise ValueError and OverflowError (resp.), not TypeError. by Mark Dickinson · 12 years ago
  68. 8f7c4b8 Issue #16481: Merge by Richard Oudkerk · 12 years ago
  69. 021f4c2 Issue #16481: multiprocessing no longer leaks process handles on Windows. by Richard Oudkerk · 12 years ago
  70. 8d27023 Allow configuration of handler properties. by Vinay Sajip · 12 years ago
  71. 8f2b6ad merge 3.3 by Philip Jenvey · 12 years ago
  72. 21c95eb merge 3.2 by Philip Jenvey · 12 years ago
  73. b37ac8e don't gc_collect on CPython to guarantee a lack of ref cycles (thanks Antoine) by Philip Jenvey · 12 years ago
  74. cc13431 Fix a typo by Brett Cannon · 12 years ago
  75. 6f7e81a merge by Brett Cannon · 12 years ago
  76. cd8efa3 Clean up the messages used by some tests. by Brett Cannon · 12 years ago
  77. 8c5ec0a Clean up test_sundry and have it error out when a module has grown proper tests. by Brett Cannon · 12 years ago
  78. 613cf25 Use importlib instead of calling __import__ directly. by Brett Cannon · 12 years ago
  79. d20fb82 Issue #16290: __complex__ must now always return an instance of complex. by Mark Dickinson · 12 years ago
  80. 2eb2f5e Closes #16378: Merged docstring changes from 3.3. by Vinay Sajip · 12 years ago
  81. 87ed599 Issue #16378: Updated docstrings to reflect the defaults present in the code. by Vinay Sajip · 12 years ago
  82. 3354327 Fix whitespace. by Antoine Pitrou · 12 years ago
  83. b5b3714 Issue #12428: Add a pure Python implementation of functools.partial(). by Antoine Pitrou · 12 years ago
  84. 65a35dc merge 3.3 by Philip Jenvey · 12 years ago
  85. 000bd42 merge 3.2 by Philip Jenvey · 12 years ago
  86. 3acc7ef add gc_collects to weakref tests by Philip Jenvey · 12 years ago
  87. ee36c24 Issue #15478: os.lchflags() is not always available when os.chflags() is available by Victor Stinner · 12 years ago
  88. 2982455 merge 3.3 by Benjamin Peterson · 12 years ago
  89. debf64c missing letter by Benjamin Peterson · 12 years ago
  90. e667e98 Issue #16218, #16444: Backport improvment on tests for non-ASCII characters by Victor Stinner · 12 years ago
  91. f298565 Add a test for hashing of unaligned memory buffers (from issue #16427). by Antoine Pitrou · 12 years ago
  92. 37bfa4e Add a test for hashing of unaligned memory buffers (from issue #16427). by Antoine Pitrou · 12 years ago
  93. 05bc966 Merge heads by Antoine Pitrou · 12 years ago
  94. 1de1394 Merge heads by Antoine Pitrou · 12 years ago
  95. cc7715f Merge heads by Antoine Pitrou · 12 years ago
  96. 8983470 Issue #16453: Fix equality testing of dead weakref objects. by Antoine Pitrou · 12 years ago
  97. f6a50cf Issue #16453: Fix equality testing of dead weakref objects. by Antoine Pitrou · 12 years ago
  98. e11fecb Issue #16453: Fix equality testing of dead weakref objects. by Antoine Pitrou · 12 years ago
  99. 65ee6ec Refactor test_preexec_errpipe to not create an uncollectable reference cycle. by Gregory P. Smith · 12 years ago
  100. 859035d Refactor test_preexec_errpipe to not create an uncollectable reference cycle. by Gregory P. Smith · 12 years ago