diff options
Diffstat (limited to 'Modules')
| -rw-r--r-- | Modules/newmodule.c | 2 | ||||
| -rw-r--r-- | Modules/xxsubtype.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Modules/newmodule.c b/Modules/newmodule.c index 7b91fb8..9a9cbf1 100644 --- a/Modules/newmodule.c +++ b/Modules/newmodule.c @@ -215,7 +215,7 @@ static PyMethodDef new_methods[] = { {NULL, NULL} /* sentinel */ }; -char new_doc[] = +static char new_doc[] = "Functions to create new objects used by the interpreter.\n\ \n\ You need to know a great deal about the interpreter to use this!"; diff --git a/Modules/xxsubtype.c b/Modules/xxsubtype.c index ae2b619..bbc5ea9 100644 --- a/Modules/xxsubtype.c +++ b/Modules/xxsubtype.c @@ -197,7 +197,7 @@ static PyTypeObject spamdict_type = { 0, /* tp_new */ }; -PyObject * +static PyObject * spam_bench(PyObject *self, PyObject *args) { PyObject *obj, *name, *res; |
