Skip to content

Commit

Permalink
- dictobject.c: Make dict_merge symbol a static symbol
Browse files Browse the repository at this point in the history
  • Loading branch information
doko42 committed Oct 11, 2016
1 parent 8d794d6 commit c96df68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Objects/dictobject.c
Original file line number Diff line number Diff line change
Expand Up @@ -2372,7 +2372,7 @@ PyDict_MergeFromSeq2(PyObject *d, PyObject *seq2, int override)
return Py_SAFE_DOWNCAST(i, Py_ssize_t, int);
}

int
static int
dict_merge(PyObject *a, PyObject *b, int override)
{
PyDictObject *mp, *other;
Expand Down

0 comments on commit c96df68

Please sign in to comment.