8000 bpo-43693: Un-revert commit f3fa63e. by ericsnowcurrently · Pull Request #26609 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

bpo-43693: Un-revert commit f3fa63e. #26609

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix a comment.
  • Loading branch information
ericsnowcurrently committed Jun 8, 2021
commit 969212a73be94754c4b3171ee3466b88f27e92df
2 changes: 1 addition & 1 deletion Objects/frameobject.c
Original file line number Diff line number Diff line change
Expand Up @@ -1097,7 +1097,7 @@ PyFrame_LocalsToFast(PyFrameObject *f, int clear)
}
PyObject *cell = NULL;
if (kind == CO_FAST_FREE) {
// The cell was cell by _PyEval_MakeFrameVector() from
// The cell was set by _PyEval_MakeFrameVector() from
// the function's closure.
assert(oldvalue != NULL && PyCell_Check(oldvalue));
cell = oldvalue;
Expand Down
0