Issue 41808: Synchronize What's New in 3.9 master and 3.9 copies - Python tracker

This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: docs@python, lukasz.langa, lys.nikolaou, pablogsal, serhiy.storchaka, terry.reedy
Priority: normal Keywords: patch

Created on 2020-09-18 01:02 by terry.reedy, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 22294 merged terry.reedy, 2020-09-18 01:07
Messages (4)
msg377081 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2020-09-18 01:02
The 3.9 copy is 5 lines longer, meaning that after the b1 split, something was added to 3.9 directly instead of to master first and backported, or added to both and deleted from master.

Lukasz, is checking the two copies part of the final release process?

The 5 lines not in master are from PR-21012 and PR-21039 of issue 40939, by Lysandros and Pablo.  Please one of you verify that they should be added to master, as in the PR I will add, and not deleted from 3.9.
___
* The Public C API functions :c:func:`PyParser_SimpleParseStringFlags`,
  :c:func:`PyParser_SimpleParseStringFlagsFilename`,
  :c:func:`PyParser_SimpleParseFileFlags` and :c:func:`PyNode_Compile`
  are deprecated and will be removed in Python 3.10 together with the old parser.
___
msg377082 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2020-09-18 01:47
The 3.9 copy (only) of What'New 3.9, line 882 has duplicated words 'deprecated deprecated'.  I made a branch off of updated 3.9 to fix this and pushed to my fork, but github repeated refuses to make a PR (against 3.9), giving me the unicorn page instead.
https://github.com/terryjreedy/cpython/tree/3.9-dedup

If this were fixed, the two copies would be identical.
msg377084 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2020-09-18 01:57
New changeset 5a8364780b7e881385f6fabcf072d599e80f51b8 by Terry Jan Reedy in branch 'master':
bpo-41808: Add What's New 3.9 entry missing from master (#22294)
https://github.com/python/cpython/commit/5a8364780b7e881385f6fabcf072d599e80f51b8
msg377088 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2020-09-18 07:01
I have backported and merged deduplication changes manually.