Fix typos in documentation and comments (#119763)

This commit is contained in:
Xie Yanbo 2024-06-04 18:22:22 +08:00 committed by GitHub
parent 5a1205b641
commit 9e052619a6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 9 additions and 9 deletions

View file

@ -1478,7 +1478,7 @@ initialize_locals(PyThreadState *tstate, PyFunctionObject *func,
localsplus[total_args] = u;
}
else if (argcount > n) {
/* Too many postional args. Error is reported later */
/* Too many positional args. Error is reported later */
for (j = n; j < argcount; j++) {
Py_DECREF(args[j]);
}