1. e8751e0 Issue #14157: Fix time.strptime failing without a year on February 29th. by Antoine Pitrou · 12 years ago
  2. 1682e5d Issue #14157: Fix time.strptime failing without a year on February 29th. by Antoine Pitrou · 12 years ago
  3. 59d5404 Issue #14753: Make multiprocessing treat negative timeouts as it did in 3.2 by Richard Oudkerk · 12 years ago
  4. ca5f91b Issue #14738: Speed-up UTF-8 decoding on non-ASCII data. Patch by Serhiy Storchaka. by Antoine Pitrou · 12 years ago
  5. fda08b0 Some nits in the pickle docs. by Antoine Pitrou · 12 years ago
  6. a9494f6 Some nits in the pickle docs. by Antoine Pitrou · 12 years ago
  7. b2eeced Removed outdated statement about pickle's and marshal's relative performance. by Antoine Pitrou · 12 years ago
  8. cc6c673 Removed outdated statement about pickle's and marshal's relative performance. by Antoine Pitrou · 12 years ago
  9. fd7aaab #14763: merge with 3.2. by Ezio Melotti · 12 years ago
  10. bf3165b #14763: document default maxsplit value for str.split. by Ezio Melotti · 12 years ago
  11. b58ab2c MERGE: Closes #14768: os.path.expanduser('~/a') doesn't works correctly when HOME is '/' by Jesus Cea · 12 years ago
  12. 7f0d888 Closes #14768: os.path.expanduser('~/a') doesn't works correctly when HOME is '/' by Jesus Cea · 12 years ago
  13. 3b1a74a Rename unicode_write_t structure and its methods to "_PyUnicodeWriter" by Victor Stinner · 12 years ago
  14. ee4544c Issue #14744: Inline unicode_writer_write_char() and unicode_write_str() by Victor Stinner · 12 years ago
  15. c1fdad3 Null merge for issue #14761. by Antoine Pitrou · 12 years ago
  16. d576c71 Issue #14761: Fix potential leak on an error case in the import machinery. by Antoine Pitrou · 12 years ago
  17. a347901 Issue #14746: Remove redundant paragraphs from skipitem() in Python/getargs.c. by Larry Hastings · 12 years ago
  18. 7ca8d1f Merge: Improve the grammar of a non-sentence. by R David Murray · 12 years ago
  19. b98b37f Improve the grammar of a non-sentence. by R David Murray · 12 years ago
  20. f59c28c unicode_writer_finish() checks string consistency by Victor Stinner · 12 years ago
  21. 5d73c17 Issue #14727: Fix race in test_multiprocessing by Richard Oudkerk · 12 years ago
  22. 104b3f4 Minor fix for test_multiprocessing by Richard Oudkerk · 12 years ago
  23. 1cffbac merge 3.2 (#14752) by Benjamin Peterson · 12 years ago
  24. 89a6e9a fix possible refleak (closes #14752) by Benjamin Peterson · 12 years ago
  25. d3f424f Merge from 3.2. Issue #14749: Add support for 'Z' to skipitem(). by Larry Hastings · 12 years ago
  26. d9e4a41 Issue #14749: Add support for 'Z' to skipitem() in Python/getargs.c. by Larry Hastings · 12 years ago
  27. 869b1f9 merge 3.2 by Benjamin Peterson · 12 years ago
  28. 3b66623 remove basically bitrotted XXXs by Benjamin Peterson · 12 years ago
  29. bbf8393 explicitly set UnsupportedOperation's module rather than relying on incorrect globals on startup (closes #14745) by Benjamin Peterson · 12 years ago
  30. 1068025 Backout ab500b297900: the check for integer overflow is wrong by Victor Stinner · 12 years ago
  31. 79575b2 Issue #14742: Don't include DirectoryTestCase from test_unparse in test_tools until we can speed it up. by Mark Dickinson · 12 years ago
  32. 6efa50a Issue #14583: Fix importlib bug when a package's __init__.py would first import one of its modules then raise an error. by Antoine Pitrou · 12 years ago
  33. 943cab2 Issue #14741: Merge fix from 3.2. by Mark Dickinson · 12 years ago
  34. da029fb Issue #14741: Fix missing support for ellipsis in parser module. by Mark Dickinson · 12 years ago
  35. 72f6095 Issue #14697: Merge fix from 3.2. by Mark Dickinson · 12 years ago
  36. 11c1dee Issue #14697: Fix missing parser module support for set displays and set comprehensions. by Mark Dickinson · 12 years ago
  37. 0576f9b Issue #14716: Change integer overflow check in unicode_writer_prepare() by Victor Stinner · 12 years ago
  38. cf360b9 Issue #14701: Add missing support for 'raise ... from' in parser module. by Mark Dickinson · 12 years ago
  39. 202fdca Close #14716: str.format() now uses the new "unicode writer" API instead of the by Victor Stinner · 12 years ago
  40. 9fad160 Issue #14701: Merge fix from 3.2. by Mark Dickinson · 12 years ago
  41. 99e2e55 Issue #14700: Fix two broken and undefined-behaviour-inducing overflow checks in old-style string formatting. Thanks Serhiy Storchaka for report and original patch. by Mark Dickinson · 12 years ago
  42. 10ba07a Issue #14705: Added support for the new 'p' format unit to skipitem(). by Larry Hastings · 12 years ago
  43. aeb562e Add John Regehr to Misc/ACKS for his help with finding integer overflows (issue #9530). by Mark Dickinson · 12 years ago
  44. 44ceea9 Issue #14695: Run Tools/parser/test_unparse.py as part of test_tools. by Mark Dickinson · 12 years ago
  45. 43d6ddc Merge Misc/NEWS issue number fix from 3.2 by Mark Dickinson · 12 years ago
  46. 640335c Fix issue number in Misc/NEWS. by Mark Dickinson · 12 years ago
  47. d30c5d5 Add Misc/NEWS entry for rev b4a1d9287780 by Richard Oudkerk · 12 years ago
  48. 486a045 Fix buildbot failures in test_lzma. by Nadeem Vawda · 12 years ago
  49. bc459bb Rename lzma.check_is_supported() to is_check_supported() to avoid grammatical confusion. by Nadeem Vawda · 12 years ago
  50. f55b329 Add lzma.{encode,decode}_filter_properties(). by Nadeem Vawda · 12 years ago
  51. 75d5d8c Merge with 3.2. by Georg Brandl · 12 years ago
  52. 0958a4d Fix document title for Sphinx. by Georg Brandl · 12 years ago
  53. 11328e4 Really fix test_gzip failures on Windows. by Nadeem Vawda · 12 years ago
  54. fe8440a Issue #14965: Bring Tools/parser/unparse.py up to date with the Python 3.3. Grammar. by Mark Dickinson · 12 years ago
  55. 1b2e944 Issue #14965: Fix missing support for starred assignments in Tools/parser/unparse.py. by Mark Dickinson · 12 years ago
  56. 6dbca36 Make test_multiprocessing more lenient about another timeout check by Richard Oudkerk · 12 years ago
  57. 41eb85b Make AcquirerProxy.acquire() support timeout argument by Richard Oudkerk · 12 years ago
  58. b78174c Fix too early decrefs. by Antoine Pitrou · 12 years ago
  59. 9d9dc8e Fix test_gzip failures on Windows. by Nadeem Vawda · 12 years ago
  60. b55d9e3 #14034: merge indentation fixes from 3.2. by Ezio Melotti · 12 years ago
  61. 9ab3fdd #14034: fix indentation. by Ezio Melotti · 12 years ago
  62. 49233c4 Merge heads. by Ezio Melotti · 12 years ago
  63. df5bedb #14034: merge argparse tutorial from 3.2. by Ezio Melotti · 12 years ago
  64. 1b8a14d Separate tests for gzip.GzipFile and gzip.open. by Nadeem Vawda · 12 years ago
  65. 6cc7a41 #14034: added the argparse tutorial. Patch by Tshepang Lekhonkhobe. by Ezio Melotti · 12 years ago
  66. 7e12620 Closes #13989: Add support for text modes to gzip.open(). by Nadeem Vawda · 12 years ago
  67. 54c74ec Fix formatting of preset values for exception messages in _lzmamodule.c. by Nadeem Vawda · 12 years ago
  68. f1b34ee #12660: Skip test_gdb when run from an installed Python. by Vinay Sajip · 12 years ago
  69. 7395404 Issue #9116: Allowed test to pass on Windows by adjusting the test condition slightly to allow for a Windows-specific error message. by Vinay Sajip · 12 years ago
  70. 3637123 Closes #14729: Allowed test to pass on Windows by adjusting the test condition slightly to allow for a Windows-specific error message. by Vinay Sajip · 12 years ago
  71. fc7e967 merge with 3.2 by Georg Brandl · 12 years ago
  72. b4c8902 #13183: backport fixes to test_pdb to 3.2 branch by Georg Brandl · 12 years ago
  73. 88b95f9 Fix some rst errors in NEWS. by Georg Brandl · 12 years ago
  74. 85a2394 Post-3.3a3 bump. by Georg Brandl · 12 years ago
  75. d9728b5 Update Misc/NEWS for issues #14127 and #14705. (And, technically, #10148.) by Larry Hastings · 12 years ago
  76. eaa5eee Backed out changeset 709850f1ec67 by Benjamin Peterson · 12 years ago
  77. cfe6f2a Update Misc/NEWS for issues #14127 and #14705. (And, technically, #10148.) by Larry Hastings · 12 years ago
  78. faf91e7 Issue #14705: Add 'p' format character to PyArg_ParseTuple* for bool support. by Larry Hastings · 12 years ago
  79. 6b03f2c Fix typo in exception message. by Stefan Krah · 12 years ago
  80. cc23884 Dummy merge by Richard Oudkerk · 12 years ago
  81. 7ef909c Fix for issue 14725 for 3.2 branch by Richard Oudkerk · 12 years ago
  82. fdb8dcf Fix for Issue 14725 for 3.3 branch. by Richard Oudkerk · 12 years ago
  83. 7a919e9 Issue #13815: TarFile.extractfile() now returns io.BufferedReader objects. by Lars Gustäbel · 12 years ago
  84. ef5a463 don't append the bytecode suffix to the source suffixes global by Benjamin Peterson · 12 years ago
  85. 8f46d65 Fix typo in changeset eb5c5c23ca9b. by Nadeem Vawda · 12 years ago
  86. c04ddee Merge by Antoine Pitrou · 12 years ago
  87. 9a86447 Add some whatsnew entries by Antoine Pitrou · 12 years ago
  88. feccc09 Clean up a docstring. by Brett Cannon · 12 years ago
  89. f3a42de Simplify code for load_dynamic() by Antoine Pitrou · 12 years ago
  90. 149e255 Merge by Antoine Pitrou · 12 years ago
  91. 3ad58f2 Kill remaining mentions of import_nt.c by Antoine Pitrou · 12 years ago
  92. 9dad882 Kill off another entry of import_nt.c by Brett Cannon · 12 years ago
  93. 0429e1a Issue #13959: Move module type constants to Lib/imp.py. by Brett Cannon · 12 years ago
  94. 2d3ce9d merge by Brett Cannon · 12 years ago
  95. 6b9b727 Remove dead Windows code which no longer will compile. by Brett Cannon · 12 years ago
  96. a6685e8 update importlib.h by Brett Cannon · 12 years ago
  97. 5182c18 Closes #14093: Added Mercurial version information to Windows builds. by Vinay Sajip · 12 years ago
  98. f19c191 Jython-friendly tweak. by Brett Cannon · 12 years ago
  99. 2657df4 Issue #13959: Re-implement imp.get_suffixes() in Lib/imp.py. by Brett Cannon · 12 years ago
  100. 17098a5 Properly mark names in importlib._bootstrap as private. by Brett Cannon · 12 years ago