-
Notifications
You must be signed in to change notification settings - Fork 281
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- No opcode implementations, yet. - Python 3.12 added pseudo and instrumentation opcodes to `dis` collections. pytype doesn't need those, so we ignore them in the generate_opcode_diff.py script. - pycnite changes are submitted and this bumps the min pycnite version number. - The YIELD_VALUE opcode changed from having no arguments to having an argument. Looks like that hasn't happened before in pytype's history. I solved that by adding a `for_python_version` function, which returns a nested class. The nested class has the same name as the top-level class, which is important because pytype relies on `__class__.__name__`. - Starting with Python 3.12, pylint complains about too long lines. This is arguably a formatter concern. Disabling the rule. PiperOrigin-RevId: 642962053
- Loading branch information
1 parent
46acb94
commit 4155664
Showing
9 changed files
with
363 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.