1. 9fab79b Issue #26900: Excluded underscored names and other private API from limited API. by Serhiy Storchaka · 9 years ago
  2. c16595e issue23591: add auto() for auto-generating Enum member values by Ethan Furman · 9 years ago
  3. 944368e Issue #23722: Initialize __class__ from type.__new__() by Nick Coghlan · 9 years ago
  4. fc3f7d5 Remove the debug print that i accidentally left in. by Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) · 9 years ago
  5. 3a95f45 Remove the debug print that i accidentally left in. by Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) · 9 years ago
  6. fff84eb Issue #26141: Update docs for typing.py. Ivan Levkivskyi. (null merge 3.5->3.6) by Guido van Rossum · 9 years ago
  7. 56ff5f7 Issue #26141: Update docs for typing.py. Ivan Levkivskyi. (Backport from the 3.6 version) by Guido van Rossum · 9 years ago
  8. 446e168 Issue #26141: Update docs for typing.py. Ivan Levkivskyi. by Guido van Rossum · 9 years ago
  9. f7f8299 Issue #28073: Improve wording around None. Michael Lee. (3.5->3.6) by Guido van Rossum · 9 years ago
  10. 1816dfe Issue #28073: Improve wording around None. Michael Lee. by Guido van Rossum · 9 years ago
  11. 050af5d Backed out changeset 8460a729e1de by Benjamin Peterson · 9 years ago
  12. cc1ea5d force gcc to use c99 inline semantics by Benjamin Peterson · 9 years ago
  13. 47503c5 fix link to instrumentation by Benjamin Peterson · 9 years ago
  14. 39e1061 add the usual extern C silliness to pydtrace.h by Benjamin Peterson · 9 years ago
  15. 699e2c9 reST is not markdown by Benjamin Peterson · 9 years ago
  16. 4eef505 Backed out changeset 3934e070c9db by Benjamin Peterson · 9 years ago
  17. 632d38a Null merge by Serhiy Storchaka · 9 years ago
  18. cc66a65 Backported tests for issue #28070. by Serhiy Storchaka · 9 years ago
  19. d65cd09 Issue #28070: Fixed parsing inline verbose flag in regular expressions. by Serhiy Storchaka · 9 years ago
  20. 99a6570 Issue #19500: Add client-side SSL session resumption to the ssl module. by Christian Heimes · 9 years ago
  21. d048637 Issue #28022: Deprecate ssl-related arguments in favor of SSLContext. by Christian Heimes · 9 years ago
  22. 130bbe5 #28067: Fixed another typo. by Alexander Belopolsky · 9 years ago
  23. 358cfd4 Issue 28043: SSLContext has improved default settings by Christian Heimes · 9 years ago
  24. 7036019 IDLE newx items. merge from 3.5 by Terry Jan Reedy · 9 years ago
  25. d92cecb IDLE newx items. by Terry Jan Reedy · 9 years ago
  26. abd143b #28067: Fixed a typo. by Alexander Belopolsky · 9 years ago
  27. 6d88fa5 Closes #28067: Do not call localtime (gmtime) in datetime module. by Alexander Belopolsky · 9 years ago
  28. c5111b5 Closes #28059: Fixes test_platform to set PYTHONPATH for .pyd files by Steve Dower · 9 years ago
  29. 82cb124 Issue #25221: merge from 3.5. by Mark Dickinson · 9 years ago
  30. 109bc3a Closes #28059: Fixes test_platform to set PYTHONPATH for .pyd files by Steve Dower · 9 years ago
  31. 36820dd Issue #25221: Fix corrupted result from PyLong_FromLong(0) when Python is compiled with NSMALLPOSINTS = 0. by Mark Dickinson · 9 years ago
  32. 8199400 Merge from 3.5 by Steve Dower · 9 years ago
  33. f028d9f Issue #27932: Backs out change by Steve Dower · 9 years ago
  34. 473e0e4 Fixed compiler warnings in compact dict implementation on 32-bit platforms. by Serhiy Storchaka · 9 years ago
  35. b0d497c Issue #24693: Changed some RuntimeError's in the zipfile module to more by Serhiy Storchaka · 9 years ago
  36. b32e869 Issue #28046: Fix get_sysconfigdata_name(). by Xavier de Gaye · 9 years ago
  37. d07b66b Backed out changeset 491bbba73bca by Zachary Ware · 9 years ago
  38. fd13c0f One more spelling fix by Martin Panter · 9 years ago
  39. b61ede4 Merge spelling fixes from 3.5 by Martin Panter · 9 years ago
  40. 99e843b Correct spelling in documentation and code comment by Martin Panter · 9 years ago
  41. 0fc55a2 test_platform: Save/restore os.environ on Windows by Victor Stinner · 9 years ago
  42. b161562 Issue #17909: Accept binary input in json.loads by Nick Coghlan · 9 years ago
  43. 457fc9a Issue #27137: align Python & C implementations of functools.partial by Nick Coghlan · 9 years ago
  44. eddc4b7 Merge 3.5 (regrtest) by Victor Stinner · 9 years ago
  45. c7a070e regrtest: accept options after test names by Victor Stinner · 9 years ago
  46. c50cccf test_eintr: Fix ResourceWarning warnings by Victor Stinner · 9 years ago
  47. e103aac Show regrtest env changed warn on Windows buildbot by Victor Stinner · 9 years ago
  48. 8f9cafa Issue #28019: itertools.count() no longer rounds non-integer step in range by Serhiy Storchaka · 9 years ago
  49. 8ddcf3a Issue #28019: itertools.count() no longer rounds non-integer step in range by Serhiy Storchaka · 9 years ago
  50. 2d7250b Fix Python version in pdb.rst by Berker Peksag · 9 years ago
  51. bc62626 Issue #18401: Fix test_pdb on Windows by Victor Stinner · 9 years ago
  52. 54de2b1 Fix check_force_ascii() by Victor Stinner · 9 years ago
  53. 11ea044 Issue #18401: Fix test_pdb if $HOME is not set by Victor Stinner · 9 years ago
  54. 2eb6eca Issue #18401: pdb tests don't read ~/.pdbrc anymore by Łukasz Langa · 9 years ago
  55. a1fd078 Try to fix sizeof unit tests on dict by Victor Stinner · 9 years ago
  56. fef7e94 Don't run garbage collection on interpreter exit if it was explicitly disabled by Łukasz Langa · 9 years ago
  57. 9e3ef52 Use raw string for regexp (3.5->3.6) by Guido van Rossum · 9 years ago
  58. e617521 Use raw string for regexp by Guido van Rossum · 9 years ago
  59. b067c8f #20476: Deal with the message_factory circular import differently. by R David Murray · 9 years ago
  60. c7454ff Issue #27810: Fix getargs.c compilation on Windows by Victor Stinner · 9 years ago
  61. 819a46f fix export of size_t parse stack function by Benjamin Peterson · 9 years ago
  62. 990397e dictobject.c: explain why stringlib is used by Victor Stinner · 9 years ago
  63. 37e4ef7 Issue #27810: Rerun Argument Clinic on all modules by Victor Stinner · 9 years ago
  64. 528db31 Issue #27566: Fix clean target in freeze makefile (patch by Lisa Roach) by Steve Dower · 9 years ago
  65. f2bdb6b Issue #27705: Update message in validate_ucrtbase.py by Steve Dower · 9 years ago
  66. 2832574 Issue #25969: Update the lib2to3 grammar to handle the unpacking by Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) · 9 years ago
  67. dbdf029 remove fix_callable - callable() was readded many releases ago. by Gregory P. Smith · 9 years ago
  68. 6a294a5 Issue #27932: Fixes memory leak in platform.win32_ver() by Steve Dower · 9 years ago
  69. f0ccbbb Emit METH_FASTCALL code in Argument Clinic by Victor Stinner · 9 years ago
  70. a9efb2f Add METH_FASTCALL calling convention by Victor Stinner · 9 years ago
  71. 78601a3 Fix SystemError in compact dict by Victor Stinner · 9 years ago
  72. eb0dfa9 make invalid_comma_and_underscore a real prototype by Benjamin Peterson · 9 years ago
  73. d7665ca Further improved ',' and '_' specification in format mini-language. by Eric V. Smith · 9 years ago
  74. fef4391 Improved ',' and '_' specification in format mini-language. by Eric V. Smith · 9 years ago
  75. 89e1b1a Issue 27080: PEP 515: add '_' formatting option. by Eric V. Smith · 9 years ago
  76. 37d398e compile dtrace stubs by Benjamin Peterson · 9 years ago
  77. 04bedfa Issue #27199: TarFile expose copyfileobj bufsize to improve throughput by Łukasz Langa · 9 years ago
  78. f578195 add dtrace inline stubs by Benjamin Peterson · 9 years ago
  79. 4ba5c88 just start with an int rather than casting by Benjamin Peterson · 9 years ago
  80. 451d0e3 Issue 27948: Allow backslashes in the literal string portion of f-strings, but not in the expressions. Also, require expressions to begin and end with literal curly braces. by Eric V. Smith · 9 years ago
  81. 052828d Issue #27566: Fix clean target in freeze makefile (patch by Lisa Roach) by Steve Dower · 9 years ago
  82. 80da993 Issue #28046: Fix distutils by Zachary Ware · 9 years ago
  83. 2e82bf8 Issue #27705: Update message in validate_ucrtbase.py by Steve Dower · 9 years ago
  84. 3b822d6 Issue #25969: Update the lib2to3 grammar to handle the unpacking by Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) · 9 years ago
  85. 50a903d merge (3.6 already has this) by Gregory P. Smith · 9 years ago
  86. feb7edc dummy dtrace probes are a good place to use inline functions by Benjamin Peterson · 9 years ago
  87. 48c7d75 Merge from Zach by Steve Dower · 9 years ago
  88. 1588a3b Issue #27932: Fixes memory leak in platform.win32_ver() by Steve Dower · 9 years ago
  89. c4b53af Issue #28046: Remove platform-specific directories from sys.path by Zachary Ware · 9 years ago
  90. b44aceb Actually fix suspicious markup, I ignored it too readily by Zachary Ware · 9 years ago
  91. dec2df3 fix dummy macro by Benjamin Peterson · 9 years ago
  92. a785c87 DTrace support: function calls, GC activity, line execution by Łukasz Langa · 9 years ago
  93. 39b42ae Remove line numbers from suspicious rules by Zachary Ware · 9 years ago
  94. ff70fc2 Issue #25758: Prevents zipimport from unnecessarily encoding a filename (patch by Eryk Sun) by Steve Dower · 9 years ago
  95. 8dcc48e Issue #25758: Prevents zipimport from unnecessarily encoding a filename (patch by Eryk Sun) by Steve Dower · 9 years ago
  96. 1319236 Merge: #14977: Make mailcap respect the order of the lines in the mailcap file. by R David Murray · 9 years ago
  97. 347dc95 #14977: Make mailcap respect the order of the lines in the mailcap file. by R David Murray · 9 years ago
  98. 223f12c Remove 2to3's fix_callable... We reintroduced the callable built-in by Gregory P. Smith · 9 years ago
  99. 935043d Closes #27976: Deprecate bundled full copy of libffi by Zachary Ware · 9 years ago
  100. b7f3c94 Merge by Raymond Hettinger · 9 years ago