diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2002-11-10 14:33:26 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2002-11-10 14:33:26 (GMT) |
commit | addfe0c09c34ca70da404744d09334e2e6281ae2 (patch) | |
tree | fbc6eafdf472d5e6905826c6a9f0042479755344 /Python | |
parent | 3ae84b6389f108fddbed5814cd210c3a0110c633 (diff) | |
download | cpython-addfe0c09c34ca70da404744d09334e2e6281ae2.zip cpython-addfe0c09c34ca70da404744d09334e2e6281ae2.tar.gz cpython-addfe0c09c34ca70da404744d09334e2e6281ae2.tar.bz2 |
Make private functions static so we don't pollute the namespace
Diffstat (limited to 'Python')
-rw-r--r-- | Python/ceval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ceval.c b/Python/ceval.c index e654efd..b19121c 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -3197,7 +3197,7 @@ PyEval_GetFuncDesc(PyObject *func) #define EXT_POP(STACK_POINTER) (*--(STACK_POINTER)) -void +static void err_args(PyObject *func, int flags, int nargs) { if (flags & METH_NOARGS) |