10000 Docs: fix typos in PyFunction_WatchCallback docs and in 3.12 NEWS by yeojin-dev · Pull Request #101980 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

Docs: fix typos in PyFunction_WatchCallback docs and in 3.12 NEWS #101980

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 2 commits into from
Feb 17, 2023
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
Revert C comment change
  • Loading branch information
erlend-aasland committed Feb 17, 2023
commit 0149d36b5d87f1496c68a97216dfe019ad8f0e07
2 changes: 1 addition & 1 deletion Python/ast_opt.c
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ fold_unaryop(expr_ty node, PyArena *arena, _PyASTOptimizeState *state)
return make_const(node, newval, arena);
}

/* Check whether a collection doesn't contain too many items (including
/* Check whether a collection doesn't containing too much items (including
subcollections). This protects from creating a constant that needs
too much time for calculating a hash.
"limit" is the maximal number of items.
Expand Down
0