commit | 6576bd844fb49b37ebbfc6d7567bcd495ddbdbae | [log] [tgz] |
---|---|---|
author | Neal Norwitz <nnorwitz@gmail.com> | Sun Nov 13 18:41:28 2005 +0000 |
committer | Neal Norwitz <nnorwitz@gmail.com> | Sun Nov 13 18:41:28 2005 +0000 |
tree | c0cc3005994e22c8cc9cdae40872749279c9ba2f | |
parent | f6a904456e6d0ce96d5ed6456eec8eaec8f92f75 [diff] |
Prevent name pollution by making lots of internal functions static.
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 @@ return (PyObject *)so; } -int +static int set_difference_update_internal(PySetObject *so, PyObject *other) { if ((PyObject *)so == other)