[Python-checkins] Fix a small grammatical mistake in a comment (GH-21526)

Brett Cannon webhook-mailer at python.org
Fri Jul 17 16:09:29 EDT 2020


https://github.com/python/cpython/commit/d583738a87c3019dcfe06ed4a0002d1d6c9e9762
commit: d583738a87c3019dcfe06ed4a0002d1d6c9e9762
branch: master
author: Brett Cannon <brett at python.org>
committer: GitHub <noreply at github.com>
date: 2020-07-17T13:09:21-07:00
summary:

Fix a small grammatical mistake in a comment (GH-21526)



Automerge-Triggered-By: @brettcannon

files:
M Objects/object.c

diff --git a/Objects/object.c b/Objects/object.c
index 4481fc91e1db1..fe3734404f5cf 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);



More information about the Python-checkins mailing list