summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2009-05-24 21:25:49 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2009-05-24 21:25:49 (GMT)
commit69f7114fc298b0332fd5e9754eaf41256bd6d5da (patch)
treeccf78a5ec6b57299cd47f6080b0718fc71206255
parent118ebe19db0f5ef0459c158179010ce30259afe7 (diff)
downloadcpython-69f7114fc298b0332fd5e9754eaf41256bd6d5da.zip
cpython-69f7114fc298b0332fd5e9754eaf41256bd6d5da.tar.gz
cpython-69f7114fc298b0332fd5e9754eaf41256bd6d5da.tar.bz2
Make some private functions static (thanks `make smelly`)
-rw-r--r--Modules/_functoolsmodule.c4
-rw-r--r--Modules/posixmodule.c1
2 files changed, 3 insertions, 2 deletions
diff --git a/Modules/_functoolsmodule.c b/Modules/_functoolsmodule.c
index 5f389a9..a9cdcb8 100644
--- a/Modules/_functoolsmodule.c
+++ b/Modules/_functoolsmodule.c
@@ -203,7 +203,7 @@ static PyGetSetDef partial_getsetlist[] = {
it as a hook to do stange things.
*/
-PyObject *
+static PyObject *
partial_reduce(partialobject *pto, PyObject *unused)
{
return Py_BuildValue("O(O)(OOOO)", Py_TYPE(pto), pto->fn, pto->fn,
@@ -211,7 +211,7 @@ partial_reduce(partialobject *pto, PyObject *unused)
pto->dict ? pto->dict : Py_None);
}
-PyObject *
+static PyObject *
partial_setstate(partialobject *pto, PyObject *args)
{
PyObject *fn, *fnargs, *kw, *dict;
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c
index f6c36cf..7f6568c 100644
--- a/Modules/posixmodule.c
+++ b/Modules/posixmodule.c
@@ -3117,6 +3117,7 @@ free_string_array(char **array, Py_ssize_t count)
PyMem_DEL(array);
}
+static
int fsconvert_strdup(PyObject *o, char**out)
{
PyObject *bytes;