1. 6c2f1fd Issues #23147, #23148: Presumably fixed bugs in folding UnstructuredTokenList. by Serhiy Storchaka · 8 years ago
  2. b3b65e6 Issue #27419: Standard __import__() no longer look up "__import__" in globals by Serhiy Storchaka · 8 years ago
  3. dec25af Issue #17711: Fixed unpickling by the persistent ID with protocol 0. by Serhiy Storchaka · 8 years ago
  4. 6fd76bc Fixes use of Py_IntDir and Py_OutDir to control build directories. by Steve Dower · 8 years ago
  5. ff1d5ab Issue #25507: IDLE no longer runs buggy code because of its tkinter imports. by Terry Jan Reedy · 8 years ago
  6. 7ca63cb Fix regressions introduced by fixes for issue #27083. by Brett Cannon · 8 years ago
  7. 702b046 #27522: break unintended cycle in feedparser. by R David Murray · 8 years ago
  8. 9305bba Issue #26696: Document collections.abc.ByteString. by Brett Cannon · 8 years ago
  9. b7567c5 Fix building tcl/tk with only the VC build tools installed. by Steve Dower · 8 years ago
  10. a47a7a5 Issue #27083: Respect the PYTHONCASEOK environment variable under Windows. by Brett Cannon · 8 years ago
  11. f76457e Issue #26844: Fix imp.find_module() to have the exception related to by Brett Cannon · 8 years ago
  12. 5d9c7ed Issue #27518: Fix typo in Grammar/Grammar by Berker Peksag · 8 years ago
  13. e09ed54 make too many nested blocks be a SyntaxError instead of a SystemError (closes #27514) by Benjamin Peterson · 8 years ago
  14. 2b87921 Issue #27180: Clarify Path.rename() behavior on Unix systems by Berker Peksag · 8 years ago
  15. 3093bf1 Issue #27455: Improve examples in tkinter documentation by Berker Peksag · 8 years ago
  16. c29df65 Issue #27369: Merge test_pyexpat from 3.4 into 3.5 by Martin Panter · 8 years ago
  17. 945863a Fixes build order and lingering intermediate files. by Steve Dower · 8 years ago
  18. b7b5d35 Issue #27369: Merge test_pyexpat from 3.3 into 3.4 by Martin Panter · 8 years ago
  19. d27a7c1 Issue #27369: Merge test_pyexpat from 3.2 into 3.3 by Martin Panter · 8 years ago
  20. 076ca6c Issue #27369: Don’t test error message detail that changed in Expat 2.2.0 by Martin Panter · 8 years ago
  21. 2cdcaf1 Issue #22758: Move NEWS entry to Library section by Martin Panter · 8 years ago
  22. 252e9ed Issue #27392: Add loop.connect_accepted_socket(). by Yury Selivanov · 8 years ago
  23. 6f379f4 Issue #27481: Docummented that ValueError is now raised instead of TypeError by Serhiy Storchaka · 8 years ago
  24. 204bf0b English spelling and grammar fixes by Martin Panter · 8 years ago
  25. 0ca0ede Restore NEWS entries lost in revision 8145f25f26aa by Martin Panter · 8 years ago
  26. bed7f1a Issue #23804: Fix SSL zero-length recv() calls to not block and raise EOF by Martin Panter · 8 years ago
  27. c95300a Merge heads by Serhiy Storchaka · 8 years ago
  28. 2a8c7ca #22758 null merge by R David Murray · 8 years ago
  29. 8cf1496 #22758 null merge by R David Murray · 8 years ago
  30. e363894 #22758 null merge by R David Murray · 8 years ago
  31. 7a139c5 #26176: fix usage of Address constructor in email examples. by R David Murray · 8 years ago
  32. 06cfb0c Issue #27473: Fixed possible integer overflow in bytes and bytearray by Serhiy Storchaka · 8 years ago
  33. 5f21f43 #22758: fix regression in handling of secure cookies. by R David Murray · 8 years ago
  34. 537ad7a #20647: Update dictobject.c comments to account for randomized string hashes. by R David Murray · 8 years ago
  35. d5b47fb Issue #27466: Change time format returned by http.cookie.time2netscape, by Senthil Kumaran · 8 years ago
  36. 1a2b24f Issue #27332: Fixed the type of the first argument of module-level functions by Serhiy Storchaka · 8 years ago
  37. b8a2f51 assume egd unless OPENSSL_NO_EGD is defined—remove configure check (closes #24557) by Benjamin Peterson · 8 years ago
  38. 27007dc fix refleaks in PyDict_SetItem error cases (closes #27248) by Benjamin Peterson · 8 years ago
  39. a1fc45a Fix a test with the new upload URL by Donald Stufft · 8 years ago
  40. 1af8b63 merge 3.4 by Benjamin Peterson · 8 years ago
  41. ede9a0f merge 3.3 by Benjamin Peterson · 8 years ago
  42. 9409b4a merge 3.4 by Benjamin Peterson · 8 years ago
  43. ad04a85 Switch to the new upload url for PyPI by Donald Stufft · 8 years ago
  44. 188c118 Switch to the new upload url for PyPI by Donald Stufft · 8 years ago
  45. 2279aeb Issue #27452: add line counter and crc to IDLE configHandler test dump. by Terry Jan Reedy · 8 years ago
  46. e75ffa9 Add versionadded to PyDict_SetDefault documentation by Berker Peksag · 8 years ago
  47. a793037 Issue #19527: Fixed tests with defined COUNT_ALLOCS. by Serhiy Storchaka · 8 years ago
  48. af65872 Issue #27443: __length_hint__() of bytearray itearator no longer return by Serhiy Storchaka · 8 years ago
  49. 8faca61 Issue #27431: Update default protocol version in shelve.Shelf() documentation by Berker Peksag · 8 years ago
  50. e39682b Issue #27430: Fix typos, patch by scop. by Berker Peksag · 8 years ago
  51. 660c8fc Issue #26665: Remove mis-use of ``$`` in activate.fish. by Brett Cannon · 8 years ago
  52. 15287f8 Issue #4945: Improved the documenting of boolean arguments in the json module. by Serhiy Storchaka · 8 years ago
  53. 0ab67df Issue #27416: clarify copy doc by Victor Stinner · 8 years ago
  54. eb51faa Issue #27418: Fixed Tools/importbench/importbench.py. by Serhiy Storchaka · 8 years ago
  55. 4575098 Fix issue #27402: example for typing did not type-check. by Guido van Rossum · 8 years ago
  56. 63bf487 asyncio: Use socket specs for getaddrinfo() in sock_connect() by Yury Selivanov · 8 years ago
  57. 77bc04a asyncio: Fix NameError in sslproto _fatal_error() by Yury Selivanov · 8 years ago
  58. 2e4cdb6 Adds script for purging the caching server for downloads on python.org. by Steve Dower · 8 years ago
  59. aaa1767 Adds batch file to build nuget packages. by Steve Dower · 8 years ago
  60. 33128c8 Include libs folder in nuget package and allow preinstalling packages by Steve Dower · 8 years ago
  61. 6803f35 Issue #27393: Fix escaping of C:\ too by Berker Peksag · 8 years ago
  62. 9c1e9d4 Issue #27393: Fix escaping of venv activate commands on Windows by Berker Peksag · 8 years ago
  63. bddc356 Null merge from 3.4 (well, except, pull in the tag for 3.4.5.) by Larry Hastings · 8 years ago
  64. 1b329e7 Merge. by Larry Hastings · 8 years ago
  65. 9bb2005 Post-release fixups for Python 3.5.2. by Larry Hastings · 8 years ago
  66. 9105870 Merge. by Larry Hastings · 8 years ago
  67. ea68492 Post-release fixups for Python 3.4.5. by Larry Hastings · 8 years ago
  68. 1e957d1 Update NEWS and idlelib NEWS.text. by Terry Jan Reedy · 8 years ago
  69. 745a407 Issue #22115: Fixed tracing Tkinter variables: by Serhiy Storchaka · 8 years ago
  70. e7614dd Simplifies nuget build with better parameters. by Steve Dower · 8 years ago
  71. 8e36221 Added tag v3.4.5 for changeset 619b61e505d0 by Larry Hastings · 8 years ago
  72. 98be9d5 Version bump for 3.4.5 final. by Larry Hastings · 8 years ago
  73. 27d3529 Regenerate pydoc topics for 3.4.5 final. by Larry Hastings · 8 years ago
  74. da27a88 Added tag v3.5.2 for changeset 4def2a2901a5 by Larry Hastings · 8 years ago
  75. 6c1aa6b Version number bump for 3.5.2 final. by Larry Hastings · 8 years ago
  76. 66b84c0 Update pydoc topics for 3.5.2 final. by Larry Hastings · 8 years ago
  77. e92dc9c Fix a scoping issue where an UnboundLocalError was triggered if a by Brett Cannon · 8 years ago
  78. 559ad5d Remove a stale reference to pathlib.PurePath.path by Brett Cannon · 8 years ago
  79. 3f9fbfc Preinstalls pip into the nuget package so that pip.exe is available after installation. by Steve Dower · 8 years ago
  80. 33f7310 Adds scripts for producing Nuget packages. by Steve Dower · 8 years ago
  81. a064382 Issue #27381: Remove superfluous paren in zipfile documentation by Berker Peksag · 8 years ago
  82. e495646 Issue #18300: Set TERM='' by default in assert_python_* by Berker Peksag · 8 years ago
  83. 37e87e6 Issue #26547: Remove outdated term dictproxy from vars() documentation by Berker Peksag · 8 years ago
  84. 79af27e Issue #27378: Remove an outdated reference from regex HOWTO by Berker Peksag · 8 years ago
  85. 91d53e7 Make PyPIRCCommandTestCase derive from a base class by Berker Peksag · 8 years ago
  86. 9e941d6 Fixed integer overflow in array.buffer_info(). by Serhiy Storchaka · 8 years ago
  87. dcb6c88 Issue #27304: Source code links for sub-packages in the same file. by Terry Jan Reedy · 8 years ago
  88. 06a1fcb Issue #27365: Allow non-ascii in idlelib/NEWS.txt, for contributor names. by Terry Jan Reedy · 8 years ago
  89. 05029d5 Issue #27365: Allow non-ascii in idlelib/NEWS.txt - minimal part for 3.5.2. by Terry Jan Reedy · 8 years ago
  90. 6ff7a14 Issue #27365: Allow non-ascii in idlelib/NEWS.txt - minimal part for 3.5.2. by Terry Jan Reedy · 8 years ago
  91. 909acb8 alter header; '%' really throws latex through a loop by Benjamin Peterson · 8 years ago
  92. 8550bd8 alter header; '%' really throws latex through a loop by Benjamin Peterson · 8 years ago
  93. c529af3 Issue #20120: Add a test case to verify the % char can be used in .pypirc by Berker Peksag · 8 years ago
  94. 947f099 Issue #27006: Do not use PyDec_CheckExact() on a type. by Stefan Krah · 8 years ago
  95. 6817c59 Issue #27006: from_float(): call the subclass' __new__() and __init__(). by Stefan Krah · 8 years ago
  96. 2275e62 Fix spelling errors in code comments by Martin Panter · 8 years ago
  97. ce1a9f3 Added more tests for issue #27122. by Serhiy Storchaka · 8 years ago
  98. 5943ea7 Issue #23641: Added __getnewargs_ex__ to the list of special mock attributes. by Serhiy Storchaka · 8 years ago
  99. 514f973 Issue #27294: Numerical state in the repr for Tkinter event objects is now by Serhiy Storchaka · 8 years ago
  100. 56fe474 Issue #27349: Fix typo in distutils upload command by Berker Peksag · 8 years ago