summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-04-03 16:42:32 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-04-03 16:42:32 (GMT)
commit45ec3288d0e181334efcaeac7ce6ef44771a2689 (patch)
treea6d36ce2e0931bc869ad0529ad88cef617937ebe /Include
parent50ef0f41afd313ed3c433f724e6aaa79d7e55c02 (diff)
downloadcpython-45ec3288d0e181334efcaeac7ce6ef44771a2689.zip
cpython-45ec3288d0e181334efcaeac7ce6ef44771a2689.tar.gz
cpython-45ec3288d0e181334efcaeac7ce6ef44771a2689.tar.bz2
Removed trailing whitespaces in miscalenous files.
Diffstat (limited to 'Include')
-rw-r--r--Include/methodobject.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Include/methodobject.h b/Include/methodobject.h
index 0236228..e2ad804 100644
--- a/Include/methodobject.h
+++ b/Include/methodobject.h
@@ -47,7 +47,7 @@ struct PyMethodDef {
typedef struct PyMethodDef PyMethodDef;
#define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL)
-PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,
+PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,
PyObject *);
/* Flag passed to newmethodobject */
@@ -66,7 +66,7 @@ PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,
/* METH_COEXIST allows a method to be entered even though a slot has
already filled the entry. When defined, the flag allows a separate
- method, "__contains__" for example, to coexist with a defined
+ method, "__contains__" for example, to coexist with a defined
slot like sq_contains. */
#define METH_COEXIST 0x0040