1. bdf6b91 bpo-29776: Use decorator syntax for properties. (#585) by Serhiy Storchaka · 8 years ago
  2. cb5297a bpo-29836: Remove nturl2path from test_sundry and amend the module docstring (GH-694) by Jim Fasarakis-Hilliard · 8 years ago
  3. 1b038e0 bpo-29808: SysLogHandler: Do not fail if initial connect to syslog failed (#663) (#663) by Коренберг Марк · 8 years ago
  4. 3f2155f bpo-16355: Clarify when inspect.getcomments() returns None (#428) by Marco Buttu · 8 years ago
  5. bd583ef bpo-29581: Make ABCMeta.__new__ pass **kwargs to type.__new__ (#527) by Nate · 8 years ago
  6. b4e9087 Fix stderr bug in json.tool test (#346) by Daniel Himmelstein · 8 years ago
  7. 6c3d527 bpo-29800: Fix crashes in partial.__repr__ if the keys of partial.keywords are not strings (#649) by Michael Seifert · 8 years ago
  8. d4914e9 Add ELLIPSIS and RARROW. Add tests (#666) by Jim Fasarakis-Hilliard · 8 years ago
  9. 2e4e011 bpo-29592: site: skip abs_paths() when it's redundant (GH-167) by INADA Naoki · 8 years ago
  10. 7e2a54c bpo-28856: Let %b format for bytes support objects that follow the buffer protocol (GH-546) by Xiang Zhang · 8 years ago
  11. b7c9150 Fix wrapping into StopIteration of return values in generators and coroutines (#644) by Yury Selivanov · 8 years ago
  12. 2b27e2e bpo-29742: asyncio get_extra_info() throws exception (#525) by Nikolay Kim · 8 years ago
  13. f659598 bpo-28692: Deprecate using non-integer value for selecting a plural form in gettext. (#507) by Serhiy Storchaka · 8 years ago
  14. d2977a3 bpo-29723: Consistently configure sys.path[0] (#575) by Nick Coghlan · 8 years ago
  15. 93710c1 bpo-29763: Use support.unlink instead of os.unlink (GH-624) by Zachary Ware · 8 years ago
  16. fdd42c4 bpo-20185: Convert list object implementation to Argument Clinic. (#542) by Serhiy Storchaka · 8 years ago
  17. 9e6ac83 bpo-29773: Add more cases for testing string to float conversion errors. (#580) by Serhiy Storchaka · 8 years ago
  18. feccdb2 bpo-29774: Improve error reporting for corrupted extra field in ZIP file. (#583) by Serhiy Storchaka · 8 years ago
  19. 964281a bpo-28298: make array 'Q', 'L' and 'I' accept big intables as elements (#570) by orenmn · 8 years ago
  20. a7cba27 bpo-29645: Speed up importing the webbrowser module. (#484) by Serhiy Storchaka · 8 years ago
  21. 8606e95 bpo-28231: The zipfile module now accepts path-like objects for external paths. (#511) by Serhiy Storchaka · 8 years ago
  22. c45cd16 bpo-28230: Document the pathlib support in tarfile and add tests. (#512) by Serhiy Storchaka · 8 years ago
  23. 21a7431 Revert "bpo-29571: Use correct locale encoding in test_re (#149)" (#554) by Benjamin Peterson · 8 years ago
  24. 02371e0 make the glibc alias table take precedence over the X11 one (#422) by Benjamin Peterson · 8 years ago
  25. 9f8ad3f bpo-29568: Disable any characters between two percents for escaped percent "%%" in the format string for classic string formatting. (GH-513) by Serhiy Storchaka · 8 years ago
  26. c393ee8 bpo-24329: allow __qualname__ and __classcell__ in __slots__ (GH-495) by Xiang Zhang · 8 years ago
  27. d5d3249 bpo-26915: Test identity first in membership operation in index() and count() methods of collections.abc.Sequence (GH-503) by Xiang Zhang · 8 years ago
  28. 8f6b344 bpo-28682: Added support for bytes paths in os.fwalk(). (#489) by Serhiy Storchaka · 8 years ago
  29. d36a716 bpo-28728: clarify possible test failure due to ISP (GH-412) by Xiang Zhang · 8 years ago
  30. d908fd9 bpo-29695: Fixed tests after removing keyword args support in some basic type constructors. (GH-520) by Serhiy Storchaka · 8 years ago
  31. 2e56424 bpo-29695: Remove bad keyword parameters in int(), bool(), float(), list() and tuple(). (#518) by Serhiy Storchaka · 8 years ago
  32. b76ad51 bpo-29714: Fix a regression that bytes format may fail when containing zero bytes inside. (GH-499) by Xiang Zhang · 8 years ago
  33. 58d23e6 bpo-29695: Deprecated using bad named keyword arguments in builtings: (#486) by Serhiy Storchaka · 8 years ago
  34. 7acffa2 bpo-29638: Fix spurious refleaks after typing is imported (#469) by Ivan Levkivskyi · 8 years ago
  35. c6b448b Change assertRaises to assertRaisesRegex in test_xmlrpc (#481) by Dillon Brock · 8 years ago
  36. de04644 bpo-28087: Skip test_asyncore and test_eintr poll failures on macOS. (#462) by Ned Deily · 8 years ago
  37. 5c4b0d0 bpo-27593: Get SCM build info from git instead of hg. (#446) by Ned Deily · 8 years ago
  38. 85b8d01 bpo-29623: Make PathLike objects work with ConfigParser.read() (#242) by David Ellis · 8 years ago
  39. 15aa4c8 bpo-29693: Fix for DeprecationWarning in test_import (#421) by Anish Shah · 8 years ago
  40. 902e9c5 asyncio: Optimize _get_running_loop() to call getpid() only when there's a loop by Yury Selivanov · 8 years ago
  41. 84af903 bpo-28963: Fix out of bound iteration in asyncio.Future.remove_done_callback/C (#408) by Yury Selivanov · 8 years ago
  42. 2f15645 asyncio: Fix trailing whitespace/code style by Yury Selivanov · 8 years ago
  43. 481cb70 bpo-29704: Fix asyncio.SubprocessStreamProtocol closing (#405) by Seth M. Larson · 8 years ago
  44. 398ff91 bpo-28893: Set __cause__ for errors in async iteration protocol (#407) by Yury Selivanov · 8 years ago
  45. 8d26aa9 bpo-29271: Fix Task.current_task and Task.all_tasks to accept None. (#406) by Yury Selivanov · 8 years ago
  46. ba7e1f9 bpo-29703: asyncio: Fix creating new event loops in child processes. (#404) by Yury Selivanov · 8 years ago
  47. 1bea762 bpo-28129: fix ctypes crashes (#386) by orenmn · 8 years ago
  48. c643a96 Add Python version since deprecation in base64 methods. (#33) by Matthias Bussonnier · 8 years ago
  49. cb90f26 fix subprocess on Windows (#391) by Benjamin Peterson · 8 years ago
  50. afbb5d1 require uuid_generate_time_safe for all tests of it (#390) by Benjamin Peterson · 8 years ago
  51. f522792 allow path-like objects to be cwd on windows (#389) by Benjamin Peterson · 8 years ago
  52. 0b84325 correct check for _uuid_generate_time (#388) by Benjamin Peterson · 8 years ago
  53. 1e68716 Revert "make the locale_flag fallback code work again (#375)" (#387) by Benjamin Peterson · 8 years ago
  54. 3c6314c bpo-29615: SimpleXMLRPCDispatcher no longer chains KeyError (#260) by Petr Motejlek · 8 years ago
  55. 43f5df5 make the locale_flag fallback code work again (#375) by Benjamin Peterson · 8 years ago
  56. 371963d use select instead of _opcode for import test (#372) by Benjamin Peterson · 8 years ago
  57. bee93f2 weaken test_from_import_missing_attr_has_name_and_path regular expression (#371) by Benjamin Peterson · 8 years ago
  58. 680e20b Clarify exception handler scope in contextlib by amosonn · 8 years ago
  59. 267b9d2 bpo-7769: enable xmlrpc.server.SimpleXMLRPCDispatcher.register_function used as decorator (GH-231) by Xiang Zhang · 8 years ago
  60. ecf39bb bpo-29661: fix contradiction in timeit.Timer.autorange's docstring (GH-331) by Xiang Zhang · 8 years ago
  61. f3a9fab bpo-29376: Fix assertion error in threading._DummyThread.is_alive() (GH-236) by Xiang Zhang · 8 years ago
  62. d5c11f7 bpo-28624: Add a test that checks that cwd parameter of Popen() accepts PathLike objects (#157) by Sayan Chowdhury · 8 years ago
  63. 4a926ca bpo-28518: Start a transaction implicitly before a DML statement (#245) by Berker Peksag · 8 years ago
  64. 5dc33ee bpo-29110: add test for Aifc_write. (GH-293) by INADA Naoki · 8 years ago
  65. 5aa3856 bpo-28961: Address my comments from earlier code review (#305) by Berker Peksag · 8 years ago
  66. ae160bb bpo-26128: Added __init__to subprocess.STARTUPINFO (#171) by Subhendu Ghosh · 8 years ago
  67. 21024f0 bpo-16285: Update urllib quoting to RFC 3986 (#173) by Ratnadeep Debnath · 8 years ago
  68. 140792b bpo-29644: suppress subprocess output from webbrowser (#289) by Nick Coghlan · 8 years ago
  69. 56a8ecc bpo-24241: Add dedicated webbrowser.register test case (#288) by Nick Coghlan · 8 years ago
  70. e3ce695 bpo-24241: Improve preferred webbrowser handling (#85) by David Steele · 8 years ago
  71. 365cb5b bpo-28556: Fix regression that sneaked into recent typing updates (GH-270) by Ivan Levkivskyi · 8 years ago
  72. 6059ce4 bpo-27788 : synchronise platform.py version number (#246) by Matthias Bussonnier · 8 years ago
  73. 41cea70 bpo-29637: clean docstring only if not None (GH-267) by Matthias Bussonnier · 8 years ago
  74. abb3b8a Update to typing: treat subscripted generics as proxies (#265) by Ivan Levkivskyi · 8 years ago
  75. 4c78c52 bpo-29622: Make AST constructor to accept less than enough number of positional arguments (GH-249) by INADA Naoki · 8 years ago
  76. 324c5d8 bpo-28911: Clarify the behaviour of assert_called_once_with. (#251) by Arne de Laat · 8 years ago
  77. d7e6433 bpo-28598: Support __rmod__ for RHS subclasses of str in % string formatting operations (#51) by Martijn Pieters · 8 years ago
  78. cb41b27 bpo-29463: Add docstring field to some AST nodes. (#46) by INADA Naoki · 8 years ago
  79. 1bc1564 bpo-29546: Improve from-import error message with location (#103) by Matthias Bussonnier · 8 years ago
  80. 03f68b6 bpo-29110: Fix file object leak in `aifc.open` when given invalid AIFF file. (GH-162) by Anthony Zhang · 8 years ago
  81. 8fb1f6e bpo-29554: Improve docs for pstat module and profile. (#88) by Matthias Bussonnier · 8 years ago
  82. 112ec38 bpo-29602: fix signed zero handling in complex constructor. (#203) by Mark Dickinson · 8 years ago
  83. 9639e4a bpo-29532: Altering a kwarg dictionary passed to functools.partial() (#190) by Serhiy Storchaka · 8 years ago
  84. a86339b Fixed bpo-29565: Corrected ctypes passing of large structs by value on Windows AMD64. (#168) by Vinay Sajip · 8 years ago
  85. 8c130d7 bpo-22807: Expose platform UUID generation safety information. (#138) by Barry Warsaw · 8 years ago
  86. ace5c0f bpo-29571: Use correct locale encoding in test_re (#149) by Nick Coghlan · 8 years ago
  87. b2ee40e Change some mercurial/ hg.python.org references. (#8) by Senthil Kumaran · 8 years ago
  88. 9764c15 update test_socket AEAD test for kernel 4.9 and up (#133) by matejcik · 8 years ago
  89. 1d4601c bpo-29576: add explicit deprecation for importlib.abc.find_loader() and find_module() (GH-32) by Matthias Bussonnier · 8 years ago
  90. bc4bed4 bpo-29546: Set 'path' on ImportError for ``from ... import ...`` (GH-91) by Matthias Bussonnier · 8 years ago
  91. 6d1dece Fixed #29534 - _decimal difference with _pydecimal (#65) by Andrew Nester · 8 years ago
  92. b692dc8 bpo-28556: Various updates to typing (#28) by Ivan Levkivskyi · 8 years ago
  93. baf7bb3 getpass: update docstrings (#49) by MRMillon · 8 years ago
  94. af88e7e bpo-27122: Fix comment to point to correct issue number (#47) by Nathaniel J. Smith · 8 years ago
  95. 109a9fe Merge 3.6 by Victor Stinner · 8 years ago
  96. 2a35c93 Fix test_datetime on Windows by Victor Stinner · 8 years ago
  97. 07547cd Merge 3.6 by Victor Stinner · 8 years ago
  98. 6f37e36 Fix test_datetime on system with 32-bit time_t by Victor Stinner · 8 years ago
  99. 05e218c Merge 3.6 by Victor Stinner · 8 years ago
  100. b67f096 Fix datetime.fromtimestamp(): check bounds by Victor Stinner · 8 years ago