diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-04-19 04:03:41 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-04-19 04:03:41 (GMT) |
commit | 8f26565ba9e3d32f6c953b04c1b9f9d13c2e1818 (patch) | |
tree | 6ed1a5aaa6ede819ec672beae759c18f6d428121 /Objects | |
parent | 0d88c652318c4c5eed77fd2e78e9e955ffa5c8d1 (diff) | |
download | cpython-8f26565ba9e3d32f6c953b04c1b9f9d13c2e1818.zip cpython-8f26565ba9e3d32f6c953b04c1b9f9d13c2e1818.tar.gz cpython-8f26565ba9e3d32f6c953b04c1b9f9d13c2e1818.tar.bz2 |
Fix spelling (inital), grammar (may translates) in documentation, comments
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/typeobject.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Objects/typeobject.c b/Objects/typeobject.c index 3a09af5..0a82f3a 100644 --- a/Objects/typeobject.c +++ b/Objects/typeobject.c @@ -3901,7 +3901,7 @@ _PyObject_GetState(PyObject *obj, int required) } } - /* The list is stored on the class so it may mutates while we + /* The list is stored on the class so it may mutate while we iterate over it */ if (slotnames_size != Py_SIZE(slotnames)) { PyErr_Format(PyExc_RuntimeError, @@ -4035,7 +4035,7 @@ _PyObject_GetNewArguments(PyObject *obj, PyObject **args, PyObject **kwargs) } /* The object does not have __getnewargs_ex__ and __getnewargs__. This may - means __new__ does not takes any arguments on this object, or that the + mean __new__ does not takes any arguments on this object, or that the object does not implement the reduce protocol for pickling or copying. */ *args = NULL; |