diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2005-11-13 18:41:28 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2005-11-13 18:41:28 (GMT) |
commit | 6576bd844fb49b37ebbfc6d7567bcd495ddbdbae (patch) | |
tree | c0cc3005994e22c8cc9cdae40872749279c9ba2f /Objects/setobject.c | |
parent | f6a904456e6d0ce96d5ed6456eec8eaec8f92f75 (diff) | |
download | cpython-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.c | 2 |
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) |