code cleanup: make local game engine functions static

This commit is contained in:
Campbell Barton
2012-09-16 00:22:55 +00:00
parent 2d6839ce65
commit beac985ab7
19 changed files with 76 additions and 75 deletions

View File

@@ -314,7 +314,7 @@ static int KX_PythonSeq_contains(PyObject *self, PyObject *key)
}
/* Matches python dict.get(key, [default]) */
PyObject* KX_PythonSeq_get(PyObject * self, PyObject *args)
static PyObject* KX_PythonSeq_get(PyObject * self, PyObject *args)
{
char *key;
PyObject* def = Py_None;