summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2020-07-17 20:09:21 (GMT)
committerGitHub <noreply@github.com>2020-07-17 20:09:21 (GMT)
commitd583738a87c3019dcfe06ed4a0002d1d6c9e9762 (patch)
tree0809606f604372365bedacb6e50e3040e0501495 /Objects
parent164b04c47e61bd35d55e61bc74f9fd646eba81bb (diff)
downloadcpython-d583738a87c3019dcfe06ed4a0002d1d6c9e9762.zip
cpython-d583738a87c3019dcfe06ed4a0002d1d6c9e9762.tar.gz
cpython-d583738a87c3019dcfe06ed4a0002d1d6c9e9762.tar.bz2
Fix a small grammatical mistake in a comment (GH-21526)
Automerge-Triggered-By: @brettcannon
Diffstat (limited to 'Objects')
-rw-r--r--Objects/object.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/object.c b/Objects/object.c
index 4481fc9..fe37344 100644
--- a/Objects/object.c
+++ b/Objects/object.c
@@ -1169,7 +1169,7 @@ _PyObject_GenericGetAttrWithDict(PyObject *obj, PyObject *name,
/* Make sure the logic of _PyObject_GetMethod is in sync with
this method.
- When suppress=1, this function suppress AttributeError.
+ When suppress=1, this function suppresses AttributeError.
*/
PyTypeObject *tp = Py_TYPE(obj);