Skip to content

Commit

Permalink
pythongh-110543: Fix CodeType.replace in presence of comprehensions (p…
Browse files Browse the repository at this point in the history
  • Loading branch information
JelleZijlstra committed Nov 8, 2023
1 parent 804575b commit 0b718e6
Show file tree
Hide file tree
Showing 3 changed files with 75 additions and 2 deletions.
45 changes: 43 additions & 2 deletions Lib/test/test_listcomps.py
@@ -1,5 +1,6 @@
import doctest
import textwrap
import types
import unittest


Expand Down Expand Up @@ -92,7 +93,8 @@


class ListComprehensionTest(unittest.TestCase):
def _check_in_scopes(self, code, outputs=None, ns=None, scopes=None, raises=()):
def _check_in_scopes(self, code, outputs=None, ns=None, scopes=None, raises=(),
exec_func=exec):
code = textwrap.dedent(code)
scopes = scopes or ["module", "class", "function"]
for scope in scopes:
Expand All @@ -119,7 +121,7 @@ def get_output(moddict, name):
return moddict[name]
newns = ns.copy() if ns else {}
try:
exec(newcode, newns)
exec_func(newcode, newns)
except raises as e:
# We care about e.g. NameError vs UnboundLocalError
self.assertIs(type(e), raises)
Expand Down Expand Up @@ -613,6 +615,45 @@ def test_frame_locals(self):
import sys
self._check_in_scopes(code, {"val": 0}, ns={"sys": sys})

def _recursive_replace(self, maybe_code):
if not isinstance(maybe_code, types.CodeType):
return maybe_code
return maybe_code.replace(co_consts=tuple(
self._recursive_replace(c) for c in maybe_code.co_consts
))

def _replacing_exec(self, code_string, ns):
co = compile(code_string, "<string>", "exec")
co = self._recursive_replace(co)
exec(co, ns)

def test_code_replace(self):
code = """
x = 3
[x for x in (1, 2)]
dir()
y = [x]
"""
self._check_in_scopes(code, {"y": [3], "x": 3})
self._check_in_scopes(code, {"y": [3], "x": 3}, exec_func=self._replacing_exec)

def test_code_replace_extended_arg(self):
num_names = 300
assignments = "; ".join(f"x{i} = {i}" for i in range(num_names))
name_list = ", ".join(f"x{i}" for i in range(num_names))
expected = {
"y": list(range(num_names)),
**{f"x{i}": i for i in range(num_names)}
}
code = f"""
{assignments}
[({name_list}) for {name_list} in (range(300),)]
dir()
y = [{name_list}]
"""
self._check_in_scopes(code, expected)
self._check_in_scopes(code, expected, exec_func=self._replacing_exec)


__test__ = {'doctests' : doctests}

Expand Down
@@ -0,0 +1,3 @@
Fix regression in Python 3.12 where :meth:`types.CodeType.replace` would
produce a broken code object if called on a module or class code object that
contains a comprehension. Patch by Jelle Zijlstra.
29 changes: 29 additions & 0 deletions Objects/codeobject.c
Expand Up @@ -643,6 +643,35 @@ PyUnstable_Code_NewWithPosOnlyArgs(
_Py_set_localsplus_info(offset, name, CO_FAST_FREE,
localsplusnames, localspluskinds);
}

// gh-110543: Make sure the CO_FAST_HIDDEN flag is set correctly.
if (!(flags & CO_OPTIMIZED)) {
Py_ssize_t code_len = PyBytes_GET_SIZE(code);
_Py_CODEUNIT *code_data = (_Py_CODEUNIT *)PyBytes_AS_STRING(code);
Py_ssize_t num_code_units = code_len / sizeof(_Py_CODEUNIT);
int extended_arg = 0;
for (int i = 0; i < num_code_units; i += 1 + _PyOpcode_Caches[code_data[i].op.code]) {
_Py_CODEUNIT *instr = &code_data[i];
uint8_t opcode = instr->op.code;
if (opcode == EXTENDED_ARG) {
extended_arg = extended_arg << 8 | instr->op.arg;
continue;
}
if (opcode == LOAD_FAST_AND_CLEAR) {
int oparg = extended_arg << 8 | instr->op.arg;
if (oparg >= nlocalsplus) {
PyErr_Format(PyExc_ValueError,
"code: LOAD_FAST_AND_CLEAR oparg %d out of range",
oparg);
goto error;
}
_PyLocals_Kind kind = _PyLocals_GetKind(localspluskinds, oparg);
_PyLocals_SetKind(localspluskinds, oparg, kind | CO_FAST_HIDDEN);
}
extended_arg = 0;
}
}

// If any cells were args then nlocalsplus will have shrunk.
if (nlocalsplus != PyTuple_GET_SIZE(localsplusnames)) {
if (_PyTuple_Resize(&localsplusnames, nlocalsplus) < 0
Expand Down

0 comments on commit 0b718e6

Please sign in to comment.