From c96df68ea3d9a3cdf1932772e1ae99ae872005f6 Mon Sep 17 00:00:00 2001 From: "doko@ubuntu.com" Date: Tue, 11 Oct 2016 08:04:02 +0200 Subject: - dictobject.c: Make dict_merge symbol a static symbol --- Objects/dictobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objects/dictobject.c b/Objects/dictobject.c index 164bc18..03c973b 100644 --- a/Objects/dictobject.c +++ b/Objects/dictobject.c @@ -2372,7 +2372,7 @@ Return: return Py_SAFE_DOWNCAST(i, Py_ssize_t, int); } -int +static int dict_merge(PyObject *a, PyObject *b, int override) { PyDictObject *mp, *other; -- cgit v0.12