gh-120780: Show attribute name for LOAD_SPECIAL in dis output (#120781)

This commit is contained in:
Jelle Zijlstra 2024-06-20 07:07:24 -07:00 committed by GitHub
parent 55596ae044
commit e8e151d471
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 59 additions and 7 deletions

View file

@ -36,6 +36,7 @@ hasexc = [op for op in opmap.values() if _opcode.has_exc(op)]
_intrinsic_1_descs = _opcode.get_intrinsic1_descs()
_intrinsic_2_descs = _opcode.get_intrinsic2_descs()
_special_method_names = _opcode.get_special_method_names()
_common_constants = [AssertionError, NotImplementedError]
_nb_ops = _opcode.get_nb_ops()