Skip to content

Commit 2735a71

Browse files
Update Objects/setobject.c
Co-authored-by: Mikhail Efimov <[email protected]>
1 parent 607237a commit 2735a71

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Objects/setobject.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1177,7 +1177,7 @@ make_new_set_basetype(PyTypeObject *type, PyObject *iterable)
11771177
void
11781178
_PyFrozenSet_MaybeUntrack(PyObject *op)
11791179
{
1180-
if ((op ==NULL) || !(PyFrozenSet_CheckExact(op))) {
1180+
if ((op == NULL) || !(PyFrozenSet_CheckExact(op))) {
11811181
return;
11821182
}
11831183
// if all elements of a frozenset are not tracked, we untrack the object

0 commit comments

Comments
 (0)