summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-11-11 15:08:19 (GMT)
committerGuido van Rossum <guido@python.org>1996-11-11 15:08:19 (GMT)
commit052b7e1cfb241b6154d38fd10815011e820f7f69 (patch)
tree4a5107d06e7eea28c29e2085290fdedffb7bf2ee /Objects
parent08ef9d98b2530d0a8e835ef4fb0a2a5f8bf64ced (diff)
downloadcpython-052b7e1cfb241b6154d38fd10815011e820f7f69.zip
cpython-052b7e1cfb241b6154d38fd10815011e820f7f69.tar.gz
cpython-052b7e1cfb241b6154d38fd10815011e820f7f69.tar.bz2
Make Py_ReturnNullError() statis as it should be.
Diffstat (limited to 'Objects')
-rw-r--r--Objects/abstract.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/abstract.c b/Objects/abstract.c
index 8d07cfa..b27d0c7 100644
--- a/Objects/abstract.c
+++ b/Objects/abstract.c
@@ -46,7 +46,7 @@ Py_ReturnMethodError(name)
return 0;
}
-PyObject *
+static PyObject *
Py_ReturnNullError()
{
if(! PyErr_Occurred())