1. fa4e68d Remove deadcode (HASH macro is no more defined) by Victor Stinner · 11 years ago
  2. 92a419e Remove now unused variables by Victor Stinner · 11 years ago
  3. 7341b52 Revert accidental deletion of _overlapped. by Martin v. Löwis · 11 years ago
  4. 24e4330 * Issue #16113: Remove sha3 module again. by Martin v. Löwis · 11 years ago
  5. f3b46b4 unicode_char() uses get_latin1_char() to get latin1 singleton characters by Victor Stinner · 11 years ago
  6. 985a82a add unicode_char() in unicodeobject.c to factorize code by Victor Stinner · 11 years ago
  7. 5c86733 Issue #18294: Fix uint_converter() in zlibmodule.c, fix the "> UINT_MAX" check by Victor Stinner · 11 years ago
  8. fbc7851 Issue #20097: Fix bad use of "self" in importlib's WindowsRegistryFinder. by Eric Snow · 11 years ago
  9. 9dee304 Issue #18585: speed zipfile import by only generating zipfile._ZipDecryptor on demand by Daniel Holth · 11 years ago
  10. daeffd2 audioop: adpcm2lin() and lin2adpcm() now raises a TypeError instead of a by Victor Stinner · 11 years ago
  11. 6f055e7 asyncio: make PY34 symbol private (rename it to _PY34) by Victor Stinner · 11 years ago
  12. 1b02da9 Issue #20111: pathlib.Path.with_suffix() now sanity checks the given suffix. by Antoine Pitrou · 11 years ago
  13. 8ec15f7 merge 3.3 (#20110) by Benjamin Peterson · 11 years ago
  14. 002033e correct word for __annotations__ doc (closes #20110) by Benjamin Peterson · 11 years ago
  15. 9025f1c whatsnew: sqlite3 uri parm, unittest.main defaultTest, ftplib.Netrc deprecation by R David Murray · 11 years ago
  16. 6e731b0 Merge and update #17282: Document unittest.main defaultTest argument. by R David Murray · 11 years ago
  17. 12e930f #17282: Document unittest.main defaultTest argument. by R David Murray · 11 years ago
  18. c22eaec merge 3.3 (closes #20108) by Benjamin Peterson · 11 years ago
  19. 3e6ab17 avoid parameter name clash (closes #20108) by Benjamin Peterson · 11 years ago
  20. 3a990c6 remove brackets by Benjamin Peterson · 11 years ago
  21. 393a942 Issue #20101: Merge with 3.3 by Zachary Ware · 11 years ago
  22. 487aedb Issue #20101: Allow test_monotonic to pass on Windows machines on which by Zachary Ware · 11 years ago
  23. f7f58f8 Update pip to the released 1.5 by Donald Stufft · 11 years ago
  24. c70d4f4 Issue #19728: Enable pip installation by default on Windows. by Martin v. Löwis · 11 years ago
  25. 009771e (Merge 3.3) Issue #18829: Add tests for the csv module for invalid characters by Victor Stinner · 11 years ago
  26. 6a31b0f Issue #18829: Add tests for the csv module for invalid characters (delimiter, by Victor Stinner · 11 years ago
  27. e879452 threading.RLock._acquire_restore() now raises a TypeError instead of a by Victor Stinner · 11 years ago
  28. f4c68db (Merge 3.3) parser: fix usage of Py_BuildValue() to build a parser error by Victor Stinner · 11 years ago
  29. 5f8d485 parser: fix usage of Py_BuildValue() to build a parser error by Victor Stinner · 11 years ago
  30. 84d3256 Update copyright dates in Mac plists. by Ned Deily · 11 years ago
  31. cb0613b Update copyright dates in Mac plists. by Ned Deily · 11 years ago
  32. a015bb1 merge 3.3 by Benjamin Peterson · 11 years ago
  33. fa10ae0 update copyright year by Benjamin Peterson · 11 years ago
  34. b672888 Issue #20055: Fix test_shutil under Windows with symlink privileges held. by Antoine Pitrou · 11 years ago
  35. 3f48ac9 Issue #20055: Fix test_shutil under Windows with symlink privileges held. by Antoine Pitrou · 11 years ago
  36. 089305f Merge: Clarify the wording of a news entry. by R David Murray · 11 years ago
  37. b075cc0 Clarify the wording of a news entry. by R David Murray · 11 years ago
  38. 33ef1ae whatsnew: mock called_with improvements, socket CAN_BCM support. by R David Murray · 11 years ago
  39. 8b2d682 whatsnew: random.getrandbits performance. by R David Murray · 11 years ago
  40. d592bb2 whatsnew: afic.open supports 'with'. by R David Murray · 11 years ago
  41. 1cb4f60 Merge with 3.3 by Zachary Ware · 11 years ago
  42. 340a692 str subclasses may have non-empty __slots__, bytes subclasses can't. by Zachary Ware · 11 years ago
  43. fced3ec whatsnew: argparse FileType accepts errors and encodings args. by R David Murray · 11 years ago
  44. 2bc930f whatsnew: epoll supports with. by R David Murray · 11 years ago
  45. d9ddd3f Update setuptools to 2.0.2 by Donald Stufft · 11 years ago
  46. 73777c4 Update pip to 1.5rc4 by Donald Stufft · 11 years ago
  47. bfd488c Issue #19544, #6516: check ZLIB_SUPPORT, not zlib (which might not be bound) by Zachary Ware · 11 years ago
  48. efa2e04 Issue19619: skip zlib error test when zlib not available by Zachary Ware · 11 years ago
  49. 2ee2c95 Issue #19544, #6516: check ZLIB_SUPPORT, not zlib (which might not be bound) by Zachary Ware · 11 years ago
  50. f598558 Fixed typo (thx Arfrever) by Christian Heimes · 11 years ago
  51. 4d1639f Closes issue 20031. Document unittest.TextTestRunner.run method. by Michael Foord · 11 years ago
  52. 2691ee6 whatsnew: abc.ABC. Also add issue number to news entry and reword. by R David Murray · 11 years ago
  53. b6fac24 Backporing the fix from Issue #12692 by Senthil Kumaran · 11 years ago
  54. 3e86ba4 Issue #19422: Explicitly disallow non-SOCK_STREAM sockets in the ssl module, rather than silently let them emit clear text data. by Antoine Pitrou · 11 years ago
  55. 880fee6 Add context to a json NEWS entry. by R David Murray · 11 years ago
  56. a82eafd #12692: null merge with 3.3 by Senthil Kumaran · 11 years ago
  57. b5c66f8 Fix breakage in TestSuite.countTestCases() introduced by issue #11798. by Antoine Pitrou · 11 years ago
  58. 156b361 Issue #19918: Fix PurePath.relative_to() under Windows. by Antoine Pitrou · 11 years ago
  59. 68816ef Export asyncio.iscoroutine[function]. by Guido van Rossum · 11 years ago
  60. e6d2f15 Issue #19422: Explicitly disallow non-SOCK_STREAM sockets in the ssl module, rather than silently let them emit clear text data. by Antoine Pitrou · 11 years ago
  61. c1764dd Issue #19648: implement empty tests in pickletester. Patch by Gennadiy Zlobin. by Antoine Pitrou · 11 years ago
  62. 473f45b whatsnew: rewrite urllib, doctest, and poplib sections. by R David Murray · 11 years ago
  63. d265381 whatsnew: importlib cleanup and source_to_code add; python partial impl. by R David Murray · 11 years ago
  64. d7bc99e Mostly-null merge of #18116 backport (updated NEWS entry). by R David Murray · 11 years ago
  65. ecff5e5 #18116: backport fix to 3.3 since real-world failure mode demonstrated. by R David Murray · 11 years ago
  66. 1896dc5 Update bundled pip to 1.5rc3 by Donald Stufft · 11 years ago
  67. 8c4f57d Issue #20046: Locale alias table no longer contains entities which can be by Serhiy Storchaka · 11 years ago
  68. 0e81463 whatsnew for gc.get_stats, plus doc tweaks. by R David Murray · 11 years ago
  69. e190fac Issue #20027: Fixed locale aliases for devanagari locales. by Serhiy Storchaka · 11 years ago
  70. 5eb0153 Issue #20027: Fixed locale aliases for devanagari locales. by Serhiy Storchaka · 11 years ago
  71. 1b97ed5 Issue #20067: Tkinter variables now work when wantobjects is false. by Serhiy Storchaka · 11 years ago
  72. d97c01f Issue #20067: Tkinter variables now work when wantobjects is false. by Serhiy Storchaka · 11 years ago
  73. e575148 - Issue #20070: Don't run test_urllib2net when network resources are not by doko@ubuntu.com · 11 years ago
  74. bb4b7c1 Issue #19938: Re-enabled test_bug_1333982 in test_dis, which had been by Zachary Ware · 11 years ago
  75. e80e806 Issue #19938: Re-enabled test_bug_1333982 in test_dis, which had been by Zachary Ware · 11 years ago
  76. 575fb31 shelf in with stmt, fish/csh in venv, ElementTree short_empty_elements keyword. by R David Murray · 11 years ago
  77. b5d5518 test_debug in test_tkinter/test_text no longer fails when wantobjects is false. by Serhiy Storchaka · 11 years ago
  78. a1de906 test_debug in test_tkinter/test_text no longer fails when wantobjects is false. by Serhiy Storchaka · 11 years ago
  79. cb13194 Issue #19320: test_tcl no longer fails when wantobjects is false. by Serhiy Storchaka · 11 years ago
  80. cc4290b Issue #19320: test_tcl no longer fails when wantobjects is false. by Serhiy Storchaka · 11 years ago
  81. 81d2be9 Issue #19020: Tkinter now uses splitlist() instead of split() in configure by Serhiy Storchaka · 11 years ago
  82. 848972c Issue #19020: Tkinter now uses splitlist() instead of split() in configure by Serhiy Storchaka · 11 years ago
  83. a7a4b49 Issue #20058: sys.stdin.readline() in IDLE now always returns only one line. by Serhiy Storchaka · 11 years ago
  84. 0fd5576 Issue #20058: sys.stdin.readline() in IDLE now always returns only one line. by Serhiy Storchaka · 11 years ago
  85. 6e39015 pty.spawn returns os.waitpid; optimization of BZ2File and LZMAFile. by R David Murray · 11 years ago
  86. 3edcc78 #16832: s/integer/object/ in docs/docstring, and add whatsnew entry. by R David Murray · 11 years ago
  87. 5ea9524 idle -n deprecation, fix case of pickle section. by R David Murray · 11 years ago
  88. 76825bc Fix English in a NEWS entry. by R David Murray · 11 years ago
  89. cad227a Move IPv6 NEWS entry into correct section. by R David Murray · 11 years ago
  90. d74d09a Neaten up structure of major sections. by R David Murray · 11 years ago
  91. 076dead Move no-longer-supported operating systems into 'removed' section. by R David Murray · 11 years ago
  92. e7cf678 Use title case for all section titles except module names. by R David Murray · 11 years ago
  93. d17aba7 sys.getallocatedblocks + regrtest -R, make coverage-report, SO macro goes away. by R David Murray · 11 years ago
  94. 061efb1 Use endash in PEP callouts. by R David Murray · 11 years ago
  95. 6dd1830 Move argument clinic into its own section, like the other PEPs. by R David Murray · 11 years ago
  96. d91ba20 Mention Windows 2000 and OS/2 drops, python-config as shell script. by R David Murray · 11 years ago
  97. 72420ff Mention PATHEXT and removed Misc dirs; clarify wording of a NEWS entry. by R David Murray · 11 years ago
  98. f47036c Removed spaces before colons and semicolons. by Serhiy Storchaka · 11 years ago
  99. 347f9c7 Make the 'read on' sentence cover more ground. by R David Murray · 11 years ago
  100. bcaaecf Move other improvements and optimization sections above deprecated. by R David Murray · 11 years ago