Python 3.8.0a2
  1. 23f4589 v3.8.0a2 by Łukasz Langa · 6 years ago v3.8.0a2
  2. 3b0abb0 bpo-33671: allow setting shutil.copyfile() bufsize globally (GH-12016) by Giampaolo Rodola · 6 years ago
  3. 9e456bc bpo-36018: Add properties for mean and stdev (GH-12022) by Raymond Hettinger · 7 years ago
  4. a875ea5 bpo-35512: Resolve string target to patch.dict decorator during function call GH#12000 by Xtreak · 7 years ago
  5. aeca373 bpo-27313: Avoid test_ttk_guionly ComboboxTest fail with macOS Cocoa Tk (GH-12011) by Ned Deily · 7 years ago
  6. 79fbcc5 bpo-36018: Make __pos__ return a distinct instance of NormDist (GH-12009) by Raymond Hettinger · 7 years ago
  7. e895de3 bpo-35813: Tests and docs for shared_memory (#11816) by Davin Potts · 7 years ago
  8. d610116 bpo-24310: Document IDLE settings dialog font tab sample (GH-12007) by Terry Jan Reedy · 7 years ago
  9. 11c7953 bpo-36018: Add the NormalDist class to the statistics module (GH-11973) by Raymond Hettinger · 7 years ago
  10. 175421b bpo-36016: Add generation option to gc.getobjects() (GH-11909) by Pablo Galindo · 7 years ago
  11. a40681d bpo-36019: Use pythontest.net instead of example.com in network tests (GH-11941) by Stéphane Wirtel · 7 years ago
  12. 47d9987 bpo-35904: Add statistics.fmean() (GH-11892) by Raymond Hettinger · 7 years ago
  13. f36f892 bpo-36068: Make _tuplegetter objects serializable (GH-11981) by Joe Jevnik · 7 years ago
  14. 407c734 bpo-36057 Update docs and tests for ordering in collections.Counter [no behavior change] (#11962) by Raymond Hettinger · 7 years ago
  15. 86f093f bpo-36060: Document how collections.ChainMap() determines iteration order (GH-11969) by Raymond Hettinger · 7 years ago
  16. 3ad9167 bpo-36052: Raise a SyntaxError when assigning a value to __debug__ with := (GH-11958) by Stéphane Wirtel · 7 years ago
  17. 3ef6344 bpo-36037: Fix test_ssl for strict OpenSSL policy (GH-11940) by Victor Stinner · 7 years ago
  18. beda52e bpo-35153: Add headers parameter to xmlrpc.client.ServerProxy (GH-10308) by Cédric Krier · 7 years ago
  19. 5105483 bpo-31506: Clarify error messages for object.__new__ and object.__init__ (GH-11641) by Sanyam Khurana · 7 years ago
  20. f522a57 Fix a misnamed test for lists. (GH-11933) by Serhiy Storchaka · 7 years ago
  21. 8d01eb4 Fix syntax warnings in tests introduced in bpo-35942. (GH-11934) by Serhiy Storchaka · 7 years ago
  22. 8e79e6e Fix syntax warnings in tests introduced in bpo-15248. (GH-11932) by Serhiy Storchaka · 7 years ago
  23. e7a4bb5 bpo-35798: Add test.support.check_syntax_warning(). (#11895) by Serhiy Storchaka · 7 years ago
  24. ee0f927 bpo-35689: IDLE: Add docstrings and unittests for colorizer.py (GH-11472) by Cheryl Sabella · 7 years ago
  25. 4371c0a bpo-34572: change _pickle unpickling to use import rather than retrieving from sys.modules (GH-9047) by tjb900 · 7 years ago
  26. 4a7f44a bpo-34294: re module, fix wrong capturing groups in rare cases. (GH-11546) by animalize · 7 years ago
  27. ef110b1 bpo-35704: Prevent test_shutil fail result when AIX is 32-bit and MAXDATA < 0x20000000 (GH-11500) by Michael Felt · 7 years ago
  28. 09fbcd6 bpo-35942: Improve the error message if __fspath__ returns invalid types in path_converter (GH-11831) by Pablo Galindo · 7 years ago
  29. ac28147 bpo-35992: Use PySequence_GetItem only if sq_item is not NULL (GH-11857) by Ivan Levkivskyi · 7 years ago
  30. 414c625 bpo-36013: delete fragile interactive shell SIGINT test (GH-11902) by Gregory P. Smith · 7 years ago
  31. 5382203 Convert range to repeat for choices() (#11889) by Raymond Hettinger · 7 years ago
  32. 38f11cc bpo-1054041: Exit properly after an uncaught ^C. (#11862) by Gregory P. Smith · 7 years ago
  33. 62e4481 bpo-15248: Emit a compiler warning when missed a comma before tuple or list. (GH-11757) by Serhiy Storchaka · 7 years ago
  34. 4327705 bpo-35931: Gracefully handle SyntaxError in pdb debug command (GH-11782) by Daniel Hahler · 7 years ago
  35. 3e028b2 bpo-35994: add sub dir for sub2_tree in os.walk test if symlink is not supported (GH-11853) by pxinwr · 7 years ago
  36. b94d4be bpo-35633: test_lockf() fails with "PermissionError: [Errno 13] Permission denied" on AIX (GH-11424) by Michael Felt · 7 years ago
  37. 2bdd585 bpo-35500: align expected and actual calls on mock.assert_called_with error message. (GH-11804) by Susan Su · 7 years ago
  38. 1dc5cb9 bpo-35887: Add make regen-importlib step to importlib._bootstrap docstring (GH-11777) by Nina Zakharenko · 7 years ago
  39. 5680f65 bpo-18283: Add support for bytes to shutil.which (GH-11818) by Cheryl Sabella · 7 years ago
  40. cfd31f0 Be consistent about the use of from-imports in random module (GH-11837) by Raymond Hettinger · 7 years ago
  41. 3dc67d0 bpo-35505: Skip test_imap4_host_default_value if localhost listens on IMAP port (GH-11823) by Matěj Cepl · 7 years ago
  42. 16f842d bpo-35972: _xxsubinterpreters: Fix potential integer truncation on 32-bit in channel_send() (gh-11822) by Alexey Izbyshev · 7 years ago
  43. b01786c bpo-35960: Fix dataclasses.field throwing away empty metadata. (GH-11815) by Christopher Hunt · 7 years ago
  44. a31f4cc bpo-35918: Remove broken has_key method and add test (#11819) by Rémi Lapeyre · 7 years ago
  45. 3766f18 bpo-35378: Fix multiprocessing.Pool references (GH-11627) by Pablo Galindo · 7 years ago
  46. 537b6ca bpo-22062: Updated docstring and documentation for pathlib (GH-8519) by Eivind Teig · 7 years ago
  47. 4207907 Fix division by 0 when checking for overflow in math.prod (GH-11808) by Pablo Galindo · 7 years ago
  48. 7b2a37b Make sure the BaseManager in test_multiprocessing is cleaned up correctly (GH-11653) by Pablo Galindo · 7 years ago
  49. 613f729 Do not retain references to processes and managers in TestSyncManagerTypes (GH-11801) by Pablo Galindo · 7 years ago
  50. 8a03ff2 bpo-35833: Revise IDLE doc for control codes sent to Shell. (GH-11799) by Terry Jan Reedy · 7 years ago
  51. 7ab3d15 Rework tuple hash tests. (GH-10161) by Tim Peters · 7 years ago
  52. 64360ad Complete and neaten-up namedtuple's replacement of builtin function lookups with derefs (GH-11794) by Raymond Hettinger · 7 years ago
  53. 96d37db bpo-35615: Fix crashes when copying a Weak{Key,Value}Dictionary. (GH-11384) by Fish · 7 years ago
  54. df8d2cd bpo-35911: add cell constructor (GH-11771) by Pierre Glaser · 7 years ago
  55. f289084 bpo-24209: In http.server script, rely on getaddrinfo to bind to preferred address based on the bind parameter. (#11767) by Jason R. Coombs · 7 years ago
  56. 2848d9d bpo-35917: Test multiprocessing manager classes and shareable types (GH-11772) by Giampaolo Rodola · 7 years ago
  57. bc09851 bpo-35606: Implement math.prod (GH-11359) by Pablo Galindo · 7 years ago
  58. c95404f email: use dict instead of OrderedDict (GH-11709) by Inada Naoki · 7 years ago
  59. f345170 asyncio: use dict instead of OrderedDict (GH-11710) by Inada Naoki · 7 years ago
  60. 85e102a bpo-35299: Fixed sysconfig and distutils during PGO profiling (GH-11744) by Steve Dower · 7 years ago
  61. 69091cb bpo-35321: Set the spec origin to frozen in frozen modules (#11732) by Nina Zakharenko · 7 years ago
  62. 89427cd bpo-32417: Make timedelta arithmetic respect subclasses (#10902) by Paul Ganssle · 7 years ago
  63. e7afe1a Merge tag 'v3.8.0a1' by Łukasz Langa · 7 years ago
  64. a8474d0 bpo-35872 and bpo-35873: Clears __PYVENV_LAUNCHER__ variable (GH-11745) by Steve Dower · 7 years ago
  65. 2f6fae6 bpo-35692: pathlib no longer raises when checking file and directory existence on drives that are not ready (GH-11746) by Steve Dower · 7 years ago
  66. aab0e57 [pydoc] Regenerate topics for v3.8.0a1 by Łukasz Langa · 7 years ago
  67. b82bfac bpo-29734: nt._getfinalpathname handle leak (GH-740) by Mark Becwar · 7 years ago
  68. d08ea70 bpo-35845: Add order={'C', 'F', 'A'} parameter to memoryview.tobytes(). (#11730) by Stefan Krah · 7 years ago
  69. 2de576e bpo-1104: msilib.SummaryInfo.GetProperty() truncates the string by one character (GH-4517) by Tzu-ping Chung · 7 years ago
  70. e5ef45b bpo-35813: Added shared_memory submodule of multiprocessing. (#11664) by Davin Potts · 7 years ago
  71. ac19081 bpo-35877: Add test for while loop named expression without parentheses (GH-11726) by Emily Morehouse · 7 years ago
  72. d4fceaa bpo-35877: Make parenthesis optional for named expression in while statement (GH-11724) by Xtreak · 7 years ago
  73. 85d83ec bpo-35864: fix namedtuple._asdict() docstring (GH-11720) by Amador Pahim · 7 years ago
  74. 075de6c bpo-35861: Fix SyntaxWarning in test_named_expressions.py (GH-11722) by Joannah Nanjekye · 7 years ago
  75. 1e39b83f bpo-35537: Skip test_start_new_session() of posix_spawn (GH-11718) by Victor Stinner · 7 years ago
  76. 80c5dfe bpo-35537: Add setsid parameter to os.posix_spawn() and os.posix_spawnp() (GH-11608) by Joannah Nanjekye · 7 years ago
  77. ffdf1c3 Consistently move the misses update to just before the user function call (GH-11715) by Raymond Hettinger · 7 years ago
  78. dcfcd14 bpo-35766: Merge typed_ast back into CPython (GH-11645) by Guido van Rossum · 7 years ago
  79. 0bb4bdf bpo-35864: Replace OrderedDict with regular dict in namedtuple() (#11708) by Raymond Hettinger · 7 years ago
  80. 9f3f093 bpo-34003: Use dict instead of OrderedDict in csv.DictReader (GH-8014) by Michael Selik · 7 years ago
  81. a1f9a33 bpo-35854: Fix EnvBuilder and --symlinks in venv on Windows (GH-11700) by Steve Dower · 7 years ago
  82. bafa848 subprocess: close pipes/fds by using ExitStack (GH-11686) by Giampaolo Rodola · 7 years ago
  83. 808180c Fast path for int inputs to math.dist() and math.hypot() (GH-11692) by Raymond Hettinger · 7 years ago
  84. 81d04bc Fix docstr/comment typos in _use_posix_spawn(). (GH-11684) by Gregory P. Smith · 7 years ago
  85. d8080c0 bpo-35780: Fix errors in lru_cache() C code (GH-11623) by Raymond Hettinger · 7 years ago
  86. 4e02f8f8 bpo-35797: Fix default executable used by the multiprocessing module (GH-11676) by Steve Dower · 7 years ago
  87. 62c35a8 bpo-35814: Allow same r.h.s. in annotated assignments as in normal ones (GH-11667) by Ivan Levkivskyi · 7 years ago
  88. 8f59ee0 bpo-35224: PEP 572 Implementation (#10497) by Emily Morehouse · 7 years ago
  89. 1fd06f1 bpo-35717: Fix KeyError exception raised when using enums and compile (GH-11523) by Rémi Lapeyre · 7 years ago
  90. fd628cf bpo-35767: Fix unittest.loader to allow partials as test_functions (#11600) by Jason Fried · 7 years ago
  91. f6243ac bpo-35537: subprocess can use posix_spawn with pipes (GH-11575) by Victor Stinner · 7 years ago
  92. da6424e bpo-35726: Prevented QueueHandler formatting from affecting other handlers (GH-11537) by Manjusaka · 7 years ago
  93. 28f6cb3 bpo-35683: Improve Azure Pipelines steps (GH-11493) by Steve Dower · 7 years ago
  94. 9932a22 bpo-33416: Add end positions to Python AST (GH-11605) by Ivan Levkivskyi · 7 years ago
  95. 2433a2a bpo-35782: Fix error message in randrange (GH-11620) by Kumar Akshay · 7 years ago
  96. e9b185f2a bpo-35794: Catch PermissionError in test_no_such_executable (GH-11635) by Pablo Galindo · 7 years ago
  97. b238545 bpo-35772: Fix test_tarfile on ppc64 (GH-11606) by Victor Stinner · 7 years ago
  98. 222d303 bpo-20239: Allow repeated deletion of unittest.mock.Mock attributes (#11057) by Pablo Galindo · 7 years ago
  99. b2dc4a3 bpo-35699: fix distuils cannot detect Build Tools 2017 anymore (GH-11495) by Marc Schlaich · 7 years ago
  100. 2cf1dda bpo-35770: Fix off-by-1 error. (#11618) by Terry Jan Reedy · 7 years ago