Skip to content

Commit 969212a

Browse files
Fix a comment.
1 parent ddcfb69 commit 969212a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Objects/frameobject.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1097,7 +1097,7 @@ PyFrame_LocalsToFast(PyFrameObject *f, int clear)
10971097
}
10981098
PyObject *cell = NULL;
10991099
if (kind == CO_FAST_FREE) {
1100-
// The cell was cell by _PyEval_MakeFrameVector() from
1100+
// The cell was set by _PyEval_MakeFrameVector() from
11011101
// the function's closure.
11021102
assert(oldvalue != NULL && PyCell_Check(oldvalue));
11031103
cell = oldvalue;

0 commit comments

Comments
 (0)