Skip to content

Commit 32b49f6

Browse files
authored
docs: Fix a few typos (#94899)
- overriden => overridden - calcualation => calculation Signed-off-by: Tim Gates <tim.gates@iress.com>
1 parent f83b0ca commit 32b49f6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Misc/NEWS.d/3.9.0a1.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5769,4 +5769,4 @@ Convert posixmodule.c statically allocated types ``DirEntryType`` and
57695769
.. section: C API
57705770
57715771
Use singular/plural noun in error message when instantiating an abstract
5772-
class with non-overriden abstract method(s).
5772+
class with non-overridden abstract method(s).

Modules/getpath.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,7 @@ def search_up(prefix, *landmarks, test=isfile):
422422
# ******************************************************************************
423423

424424
# The contents of an optional ._pth file are used to totally override
425-
# sys.path calcualation. Its presence also implies isolated mode and
425+
# sys.path calculation. Its presence also implies isolated mode and
426426
# no-site (unless explicitly requested)
427427
pth = None
428428
pth_dir = None

Objects/typeobject.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5460,7 +5460,7 @@ object_getstate(PyObject *obj, int required)
54605460
PyCFunction_GET_SELF(getstate) == obj &&
54615461
PyCFunction_GET_FUNCTION(getstate) == object___getstate__)
54625462
{
5463-
/* If __getstate__ is not overriden pass the required argument. */
5463+
/* If __getstate__ is not overridden pass the required argument. */
54645464
state = object_getstate_default(obj, required);
54655465
}
54665466
else {

0 commit comments

Comments
 (0)