1. 1b8f7b8 Issue 27921: Remove backslash from another f-string. I'll revert this change before beta 2. by Eric V. Smith · 9 years ago
  2. 6a4efce Closes issue 27921: Disallow backslashes anywhere in f-strings. This is a temporary restriction. In 3.6 beta 2, the plan is to again allow backslashes in the string parts of f-strings, but disallow them in the expression parts. by Eric V. Smith · 9 years ago
  3. 3b09cd6 Merge by Raymond Hettinger · 9 years ago
  4. f0f1c23 Issue 27936: Fix inconsistent round() behavior between float and int by Raymond Hettinger · 9 years ago
  5. 25d94bb issue23591: bool(empty_flags) == False; more docs & tests by Ethan Furman · 9 years ago
  6. 65a5a47 issue23591: add docs; code cleanup; more tests by Ethan Furman · 9 years ago
  7. 112835c Merge by Raymond Hettinger · 9 years ago
  8. c7bab7c Issue #27706: Fix regression in random.seed(somestr, version=1) by Raymond Hettinger · 9 years ago
  9. 898ac56 Merge asyncio from 3.5 by Guido van Rossum · 9 years ago
  10. 8b7918a Don't select for read on character devices in _UnixWritePipeTransport. by Guido van Rossum · 9 years ago
  11. 7309421 Issue #27907: variable rename. (Ville Skyttä) (Merge 3.5->3.6) by Guido van Rossum · 9 years ago
  12. 09c22ad Issue #27907: variable rename. (Ville Skyttä) by Guido van Rossum · 9 years ago
  13. ee47e5c issue23591: add Flags, IntFlags, and tests by Ethan Furman · 9 years ago
  14. 8ca3570 Issue #27895: Strengthen the dict reader tests. by Raymond Hettinger · 9 years ago
  15. 43ca452 Issue #27842: The csv.DictReader now returns rows of type OrderedDict. by Raymond Hettinger · 9 years ago
  16. 15f44ab Issue #27895: Spelling fixes (Contributed by Ville Skyttä). by Raymond Hettinger · 9 years ago
  17. 613debc Merge with 3.5 by Zachary Ware · 9 years ago
  18. 5cf1c6c Skip test_tools.test_i18n when pygettext.py is missing by Zachary Ware · 9 years ago
  19. 82a9527 Issue #27870: A left shift of zero by a large integer no longer attempts to allocate large amounts of memory. by Mark Dickinson · 9 years ago
  20. 84e6311 Issue 23229: add cmath.inf, cmath.nan, cmath.infj and cmath.nanj. by Mark Dickinson · 9 years ago
  21. d0f5bab Issue #26027: Fix test_path_t_converter on Windows by Berker Peksag · 9 years ago
  22. 3ce2fd4 Don't test for path-like bytes paths on Windows by Brett Cannon · 9 years ago
  23. 1b6c6da Issue #27506: Support bytes/bytearray.translate() delete as keyword argument by Martin Panter · 9 years ago
  24. aac9b71 Issue #19884: Merge Readline updates from 3.5 by Martin Panter · 9 years ago
  25. c427b8d Issue #19884: Avoid spurious output on OS X with Gnu Readline by Martin Panter · 9 years ago
  26. ef91bb2 Issue #12319: Always send file request bodies using chunked encoding by Martin Panter · 9 years ago
  27. 8f96a30 Issue #26027: Don't test for bytearray in path_t as that's now deprecated. by Brett Cannon · 9 years ago
  28. 3f9183b Issue #26027, #27524: Add PEP 519/__fspath__() support to os and os.path. by Brett Cannon · 9 years ago
  29. f74c33a Merge by Raymond Hettinger · 9 years ago
  30. 7ea386e Issue 19504: Change "customise" to "customize" American spelling. by Raymond Hettinger · 9 years ago
  31. 2085361 Fix typo in test name by Berker Peksag · 9 years ago
  32. 3c0d0ba Issue #12319: Support for chunked encoding of HTTP request bodies by Martin Panter · 9 years ago
  33. a790fe7 Remove expected failure from test of _product internal function. by Steven D'Aprano · 9 years ago
  34. d6ea301 Remove support for nth root of negative numbers with odd powers. by Steven D'Aprano · 9 years ago
  35. efa798d A new version of typing.py from https://github.com/python/typing. by Guido van Rossum · 9 years ago
  36. f428521 Backed out changeset 1017215f5492 by Mark Dickinson · 9 years ago
  37. 7c7c146 Issue #27834: Avoid overflow error in ZoneInfo.invert(). by Alexander Belopolsky · 9 years ago
  38. ffcb022 Issue #27787: No longer call deleted test_main(). by Terry Jan Reedy · 9 years ago
  39. 1f5beb7 A new version of typing.py from https://github.com/python/typing. (Merge 3.5->3.6) by Guido van Rossum · 9 years ago
  40. f066694 Issue 27598: Add Collections to collections.abc. by Guido van Rossum · 9 years ago
  41. 9ff4fb3 Automated merge with ssh://hg.python.org/cpython by Steven D'Aprano · 9 years ago
  42. 4fe9f16 Issue #26040 (part 1): add new testcases to cmath_testcases.txt. Thanks Jeff Allen. by Mark Dickinson · 9 years ago
  43. 6877ed3 Issue #27573 make the exit message configurable. by Steven D'Aprano · 9 years ago
  44. 7caf908 Issue #27832: Make _normalize parameter to Fraction.__init__ keyword-only. by Mark Dickinson · 9 years ago
  45. 1fa6915 Issue #27787: Remove test_main() and hard-coded list of test classes by Martin Panter · 9 years ago
  46. 9ae5050 Issue #12713: reverted fix pending further discussion. by Vinay Sajip · 9 years ago
  47. ad7b6c3 Issue #27829: libregrtest.save_env: flush stderr by Victor Stinner · 9 years ago
  48. ab98367 Cleanup libregrtest by Victor Stinner · 9 years ago
  49. b820d7f Issue #27792: force int return type for modulo operations involving bools. by Mark Dickinson · 9 years ago
  50. 0add84b Issue #27539: Merge from 3.5. by Mark Dickinson · 9 years ago
  51. 8447965 Issue #27539: Fix unnormalised Fraction.__pow__ result for negative exponent and base. Thanks Vedran Čačić. by Mark Dickinson · 9 years ago
  52. 54cd196 Issue #26984: int() now always returns an instance of exact int. by Serhiy Storchaka · 9 years ago
  53. cbcd221 Merge #27782 fix from 3.5 by Nick Coghlan · 9 years ago
  54. 8682f57 Issue #27782: Fix m_methods handling in multiphase init by Nick Coghlan · 9 years ago
  55. f9ed528 Issue #27487: Merge runpy warning from 3.5 by Martin Panter · 9 years ago
  56. 9c8aa9b Issue #27487: Warn if submodule already imported before runpy execution by Martin Panter · 9 years ago
  57. e8e6127 issue26981: add _order_ compatibility shim to enum.Enum by Ethan Furman · 9 years ago
  58. 4bf6ed5 Issue #27614: Merge test_docxmlrpc from 3.5 by Martin Panter · 9 years ago
  59. 051b220 Issue #27787: Merge regrtest fixup from 3.5 by Martin Panter · 9 years ago
  60. 332dbc7 Issue26988: remove AutoEnum by Ethan Furman · 9 years ago
  61. d874c05 Issue #27614: Avoid race in test_docxmlrpc server setup by Martin Panter · 9 years ago
  62. 68c1f1e Issue #27787: Clean up weak references before checking for dangling threads by Martin Panter · 9 years ago
  63. f2abf5c regrtest: replace "Result:" with "Tests result:" by Victor Stinner · 9 years ago
  64. 53926f1 Issue #27801: Skip test_update_lines_cols when update_lines_cols() is not available by Berker Peksag · 9 years ago
  65. fa46aa7 Issue #27801: Merge from 3.5 by Berker Peksag · 9 years ago
  66. 3f015a6 Issue #27157: Make only type() itself accept the one-argument form by Berker Peksag · 9 years ago
  67. c199603 Merge: #2466: ismount now recognizes mount points user can't access. by R David Murray · 9 years ago
  68. 750018b #2466: ismount now recognizes mount points user can't access. by R David Murray · 9 years ago
  69. ef948cd Closes #12713: Allowed abbreviation of subcommands in argparse. by Vinay Sajip · 9 years ago
  70. 97c1adf Anti-registration of various ABC methods. by Guido van Rossum · 9 years ago
  71. 0a6996d Merge 3.5 (fix raise) by Victor Stinner · 9 years ago
  72. eec9331 Fix SystemError in "raise" statement by Victor Stinner · 9 years ago
  73. 989df09 Issue #16764: Move NEWS entry to correct section and remove too strict test. by Serhiy Storchaka · 9 years ago
  74. e09594d Issue #24773: Include Tallinn 1999-10-31 transition in tests. by Alexander Belopolsky · 9 years ago
  75. 6368603 regrtest: add a summary of the summary, "Result: xxx" by Victor Stinner · 9 years ago
  76. c5a01f8 regrtest: set interrupted to True if re-run is interrupted by Victor Stinner · 9 years ago
  77. 8f00319 regrtest: add newlines in output for readability by Victor Stinner · 9 years ago
  78. 798d7fb Merge 3.5 (script_helper) by Victor Stinner · 9 years ago
  79. 7e6977a script_helper: kill the subprocess on error by Victor Stinner · 9 years ago
  80. 435eaf4 regrtest: nicer output for durations by Victor Stinner · 9 years ago
  81. 6c44619 regrtest: rename --slow option to --slowest by Victor Stinner · 9 years ago
  82. 717a32b Fix typo in test_time.py by Victor Stinner · 9 years ago
  83. e3f1e8a Issue #27181: Skip tests known to fail until a fix is found by Victor Stinner · 9 years ago
  84. 6538b43 Issue #25628: Make namedtuple "rename" and "verbose" parameters keyword-only. by Raymond Hettinger · 9 years ago
  85. cc2e80b merge 3.5 by Benjamin Peterson · 9 years ago
  86. b1c6bdc merge 3.4 by Benjamin Peterson · 9 years ago
  87. 432ea4f fail when negative values are passed to instr() by Benjamin Peterson · 9 years ago
  88. f35bb9e Issue #27611, #24137: Only change tkinter when easily restored. by Terry Jan Reedy · 9 years ago
  89. 0a891d7 Issue #12345: Add mathemathcal constant tau to math and cmath. by Guido van Rossum · 9 years ago
  90. 15f3228 Issue #16764: Support keyword arguments to zlib.decompress(). Patch by by Serhiy Storchaka · 9 years ago
  91. d003423 Issue #26823: Abbreviate recursive tracebacks by Nick Coghlan · 9 years ago
  92. dd51d16 Issue27573 code.interact prints a message when exiting. by Steven D'Aprano · 9 years ago
  93. 09f4f71 Issue6422 add autorange method to timeit.Timer by Steven D'Aprano · 9 years ago
  94. c0654d4 merge 3.5 by Benjamin Peterson · 9 years ago
  95. f17a8e9 merge 3.4 by Benjamin Peterson · 9 years ago
  96. 40a77c3 do not allow reading negative values with getstr() by Benjamin Peterson · 9 years ago
  97. 10c2dd2 Issue #24773: Skip system tests for transitions in year 2037 and later. by Alexander Belopolsky · 9 years ago
  98. 4a2360d Issue #25805: Skip a test for test_pkgutil when __name__ == __main__. by Brett Cannon · 9 years ago
  99. 51ad4cf Issue #26741: Merge ResourceWarning fixes from 3.5 by Martin Panter · 9 years ago
  100. 3cf0b25 Issue #26741: Clean up subprocess.Popen object in test_poll by Martin Panter · 9 years ago