summaryrefslogtreecommitdiffstats
path: root/Objects/setobject.c
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2005-11-13 18:41:28 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2005-11-13 18:41:28 (GMT)
commit6576bd844fb49b37ebbfc6d7567bcd495ddbdbae (patch)
treec0cc3005994e22c8cc9cdae40872749279c9ba2f /Objects/setobject.c
parentf6a904456e6d0ce96d5ed6456eec8eaec8f92f75 (diff)
downloadcpython-6576bd844fb49b37ebbfc6d7567bcd495ddbdbae.zip
cpython-6576bd844fb49b37ebbfc6d7567bcd495ddbdbae.tar.gz
cpython-6576bd844fb49b37ebbfc6d7567bcd495ddbdbae.tar.bz2
Prevent name pollution by making lots of internal functions static.
Diffstat (limited to 'Objects/setobject.c')
-rw-r--r--Objects/setobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/setobject.c b/Objects/setobject.c
index 29a9184..d39f265 100644
--- a/Objects/setobject.c
+++ b/Objects/setobject.c
@@ -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)