Skip to content

Commit 5ecf0f9

Browse files
committed
Fix typo
1 parent bb2c546 commit 5ecf0f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Objects/dictobject.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8016,7 +8016,7 @@ frozendict_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
80168016
if (d == NULL) {
80178017
return NULL;
80188018
}
8019-
assert(Py_REFCNT(self) == 1);
8019+
assert(Py_REFCNT(d) == 1);
80208020

80218021
PyFrozenDictObject *self = _PyFrozenDictObject_CAST(d);
80228022
self->ma_hash = -1;

0 commit comments

Comments
 (0)