summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2001-04-14 17:55:41 (GMT)
committerGuido van Rossum <guido@python.org>2001-04-14 17:55:41 (GMT)
commit6b356e70b5f3d0ce99d84576401c2acca6a0b90e (patch)
tree36cab4a553dfda34442e7019213d3986561b9ac2 /Objects
parentf68d8e52e7ce833d123de034a4f123ec710a639f (diff)
downloadcpython-6b356e70b5f3d0ce99d84576401c2acca6a0b90e.zip
cpython-6b356e70b5f3d0ce99d84576401c2acca6a0b90e.tar.gz
cpython-6b356e70b5f3d0ce99d84576401c2acca6a0b90e.tar.bz2
Make one more private symbol static.
Diffstat (limited to 'Objects')
-rw-r--r--Objects/frameobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/frameobject.c b/Objects/frameobject.c
index 64d166c..8e78f0f 100644
--- a/Objects/frameobject.c
+++ b/Objects/frameobject.c
@@ -273,7 +273,7 @@ map_to_dict(PyObject *map, int nmap, PyObject *dict, PyObject **values,
}
}
-void
+static void
dict_to_map(PyObject *map, int nmap, PyObject *dict, PyObject **values,
int deref, int clear)
{