Skip to content

Commit e142095

Browse files
committed
fix merge conflict
1 parent d81f9b6 commit e142095

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Python/pylifecycle.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -894,7 +894,7 @@ pycore_init_builtins(PyThreadState *tstate)
894894
common_objs[CONSTANT_FALSE] = Py_False;
895895
common_objs[CONSTANT_MINUS_ONE] =
896896
(PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS - 1];
897-
interp->common_consts[CONSTANT_BUILTIN_FROZENSET] = (PyObject *)&PyFrozenSet_Type;
897+
common_objs[CONSTANT_BUILTIN_FROZENSET] = (PyObject *)&PyFrozenSet_Type;
898898
for (int i = 0; i < NUM_COMMON_CONSTANTS; i++) {
899899
assert(common_objs[i] != NULL);
900900
_Py_SetImmortal(common_objs[i]);

0 commit comments

Comments
 (0)