[New-bugs-announce] [issue45039] use ADDOP_LOAD_CONST consistently

Irit Katriel report at bugs.python.org
Sat Aug 28 13:46:22 EDT 2021


New submission from Irit Katriel <iritkatriel at gmail.com>:

The compiler generally uses ADDOP_LOAD_CONST to emit a LOAD_CONST, but there are two places that use ADDOP_O(c, LOAD_CONST, Py_None, consts);

This is currently equivalent to ADDOP_LOAD_CONST(c, Py_None);

It should be replaced because we may soon change ADDOP_LOAD_CONST.

----------
components: Interpreter Core
messages: 400485
nosy: iritkatriel
priority: normal
severity: normal
status: open
title: use ADDOP_LOAD_CONST consistently
versions: Python 3.11

_______________________________________
Python tracker <report at bugs.python.org>
<https://bugs.python.org/issue45039>
_______________________________________


More information about the New-bugs-announce mailing list