summaryrefslogtreecommitdiffstats
path: root/Objects/frameobject.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2001-04-14 17:55:09 (GMT)
committerGuido van Rossum <guido@python.org>2001-04-14 17:55:09 (GMT)
commitf68d8e52e7ce833d123de034a4f123ec710a639f (patch)
treefceec6ba2862506e6839a6b34579b635052360e9 /Objects/frameobject.c
parentf85af612f8c109f52333ee2d106b0848bf6ab372 (diff)
downloadcpython-f68d8e52e7ce833d123de034a4f123ec710a639f.zip
cpython-f68d8e52e7ce833d123de034a4f123ec710a639f.tar.gz
cpython-f68d8e52e7ce833d123de034a4f123ec710a639f.tar.bz2
Make some private symbols static.
Diffstat (limited to 'Objects/frameobject.c')
-rw-r--r--Objects/frameobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/frameobject.c b/Objects/frameobject.c
index 74e7012..64d166c 100644
--- a/Objects/frameobject.c
+++ b/Objects/frameobject.c
@@ -251,7 +251,7 @@ PyFrame_BlockPop(PyFrameObject *f)
/* Convert between "fast" version of locals and dictionary version */
-void
+static void
map_to_dict(PyObject *map, int nmap, PyObject *dict, PyObject **values,
int deref)
{