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: LIST_TO_TUPLE placed below the sentence "all of the following use their opcodes" in dis library documentaiton.
Type: enhancement Stage: resolved
Components: Documentation Versions: Python 3.11
process
Status: closed Resolution: out of date
Dependencies: Superseder:
Assigned To: docs@python Nosy List: andrei.avk, docs@python, glubs9, iritkatriel
Priority: normal Keywords: patch

Created on 2021-05-22 04:59 by glubs9, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 26859 merged andrei.avk, 2021-06-22 18:14
Messages (4)
msg394178 - (view) Author: (glubs9) * Date: 2021-05-22 04:59
in the dis library documentation where it lists all of the instructions in python bytecode, it includes a small sentence about half way dow "all of the following instructions use their arguments".

After this sentence there is an instruction specified LIST_TO_TUPLE which does not in fact use its argument.

It's a minor mistake but 100% on how it should be fixed so I have not yet made a pr. It could be fixed by removing the sentence or just moving it above the sentence. I'm not sure.
msg394179 - (view) Author: (glubs9) * Date: 2021-05-22 05:01
actually now that I am going through the documentation a bit more thoroughly this has happened again, dict_merge is placed below the sentence as well.
msg396356 - (view) Author: Andrei Kulakov (andrei.avk) * (Python triager) Date: 2021-06-22 18:18
I think the arg to dict_merge was just missing, I've put up a PR that adds it.
msg416993 - (view) Author: Irit Katriel (iritkatriel) * (Python committer) Date: 2022-04-08 15:41
The "all of the following.. " sentence has been removed in 3.11.
History
Date User Action Args
2022-04-11 14:59:46adminsetgithub: 88379
2022-04-08 15:41:36iritkatrielsetstatus: open -> closed

nosy: + iritkatriel
messages: + msg416993

resolution: out of date
stage: patch review -> resolved
2021-06-22 18:18:01andrei.avksetmessages: + msg396356
2021-06-22 18:14:45andrei.avksetkeywords: + patch
nosy: + andrei.avk

pull_requests: + pull_request25436
stage: patch review
2021-05-22 05:01:53glubs9setmessages: + msg394179
2021-05-22 04:59:43glubs9create