]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
Fix opcode name printing in debug mode (#113870)
authorGuido van Rossum <guido@python.org>
Tue, 9 Jan 2024 18:18:11 +0000 (10:18 -0800)
committerGitHub <noreply@github.com>
Tue, 9 Jan 2024 18:18:11 +0000 (18:18 +0000)
commit65f8eb71190f870c66fb00da29a670ee232a3fd5
tree299c8d407b9eaafa94d07b63304f24e579cd87ea
parentad849b4ba008bf4ff97151651e619259ddb4fc18
Fix opcode name printing in debug mode (#113870)

Fix a few places where the lltrace debug output printed ``(null)`` instead of an opcode name, because it was calling ``_PyUOpName()`` on a Tier-1 opcode.
Python/optimizer.c