gh-105481: simplify definition of pseudo ops in Lib/opcode.py (#107561)

This commit is contained in:
Irit Katriel 2023-08-02 18:16:57 +01:00 committed by GitHub
parent b9c9a36c2f
commit dd693d6320
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 23 additions and 40 deletions

View file

@ -124,6 +124,11 @@ opcode
This field was added in 3.12, it was never documented and is not intended for
external usage. (Contributed by Irit Katriel in :gh:`105481`.)
* Removed ``opcode.is_pseudo``, ``opcode.MIN_PSEUDO_OPCODE`` and
``opcode.MAX_PSEUDO_OPCODE``, which were added in 3.12, were never
documented or exposed through ``dis``, and were not intended to be
used externally.
pathlib
-------