Prevent name pollution by making lots of internal functions static.

This commit is contained in:
Neal Norwitz 2005-11-13 18:41:28 +00:00
parent f6a904456e
commit 6576bd844f
5 changed files with 35 additions and 35 deletions

View file

@ -1214,7 +1214,7 @@ set_iand(PySetObject *so, PyObject *other)
return (PyObject *)so;
}
int
static int
set_difference_update_internal(PySetObject *so, PyObject *other)
{
if ((PyObject *)so == other)