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
Title: Most bytecode changes are absent from Python 3.9 What's new
Type: Stage: resolved
Components: Versions: Python 3.9
process
Status: closed Resolution: out of date
Dependencies: Superseder:
Assigned To: Mark.Shannon Nosy List: Mark.Shannon, lukasz.langa, mdartiailh, miss-islington, ned.deily
Priority: normal Keywords: patch

Created on 2020-09-03 13:26 by mdartiailh, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 22151 merged Mark.Shannon, 2020-09-08 15:17
PR 22174 merged miss-islington, 2020-09-09 16:31
Messages (6)
msg376298 - (view) Author: Matthieu Dartiailh (mdartiailh) * Date: 2020-09-03 13:26
A number of bytecodes have been added removed in Python 3.9 as documented in https://docs.python.org/3.9/library/dis.html. However only the addition of LOAD_ASSERTION_ERROR is currently documented in What's New. The relevant bpo issues are:
- https://bugs.python.org/issue33387
- https://bugs.python.org/issue39320
msg376576 - (view) Author: Mark Shannon (Mark.Shannon) * (Python committer) Date: 2020-09-08 14:47
https://bugs.python.org/issue39320 has a change note:
https://docs.python.org/3.9/whatsnew/changelog.html#python-3-9-0-beta-3
msg376582 - (view) Author: Mark Shannon (Mark.Shannon) * (Python committer) Date: 2020-09-08 16:47
The change note for 33387 incorrectly referred to 32949
msg376624 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2020-09-09 09:44
Mark, PR 22151 needs to be merged to the 3.9 branch as well.  You can add the "Needs backport to 3.9" label to the original PR.
msg376646 - (view) Author: Mark Shannon (Mark.Shannon) * (Python committer) Date: 2020-09-09 16:32
Thanks for the reminder. Tis' done.
msg377725 - (view) Author: Matthieu Dartiailh (mdartiailh) * Date: 2020-10-01 00:08
Looking at the current version of the page https://docs.python.org/3.9/whatsnew/3.9.html#cpython-bytecode-changes I still see only the LOAD_ASSERTION_ERROR. It seems the changelog got updated but not the What's new
History
Date User Action Args
2022-04-11 14:59:35adminsetgithub: 85869
2021-08-13 08:35:10Mark.Shannonsetstatus: open -> closed
resolution: out of date
stage: resolved
2020-10-01 00:08:35mdartiailhsetmessages: + msg377725
2020-09-09 16:32:06Mark.Shannonsetmessages: + msg376646
stage: patch review -> (no value)
2020-09-09 16:31:35miss-islingtonsetnosy: + miss-islington

pull_requests: + pull_request21242
stage: patch review
2020-09-09 09:44:00ned.deilysetnosy: + ned.deily
messages: + msg376624
2020-09-08 16:47:27Mark.Shannonsetmessages: + msg376582
stage: patch review -> (no value)
2020-09-08 15:17:17Mark.Shannonsetkeywords: + patch
stage: patch review
pull_requests: + pull_request21232
2020-09-08 14:47:41Mark.Shannonsetmessages: + msg376576
2020-09-08 14:37:03Mark.Shannonsetassignee: Mark.Shannon
2020-09-08 00:11:42ned.deilysetnosy: + lukasz.langa

versions: + Python 3.9
2020-09-03 15:19:35xtreaksetnosy: + Mark.Shannon
2020-09-03 13:26:53mdartiailhcreate