Core and Builtins
-----------------
+- Issue #27921: Disallow backslashes in f-strings. This is a temporary
+ restriction: in beta 2, backslashes will only be disallowed inside
+ the braces (where the expressions are). This is a breaking change
+ from the 3.6 alpha releases.
+
+- Issue #27870: A left shift of zero by a large integer no longer attempts
+ to allocate large amounts of memory.
+
+- Issue #25402: In int-to-decimal-string conversion, improve the estimate
+ of the intermediate memory required, and remove an unnecessarily strict
+ overflow check. Patch by Serhiy Storchaka.
+
+- Issue #27214: In long_invert, be more careful about modifying object
+ returned by long_add, and remove an unnecessary check for small longs.
+ Thanks Oren Milman for analysis and patch.
+
+- Issue #27506: Support passing the bytes/bytearray.translate() "delete"
+ argument by keyword.
+
+ - Issue #27811: Fix a crash when a coroutine that has not been awaited is
+ finalized with warnings-as-errors enabled.
+
- Issue #27587: Fix another issue found by PVS-Studio: Null pointer check
after use of 'def' in _PyState_AddModule().
Initial patch by Christian Heimes.