Issue #16745: Hide a couple of symbols by making them local.

This commit is contained in:
Stefan Krah 2012-12-21 23:11:05 +01:00
parent c51bafbbda
commit fb7f580e81
2 changed files with 8 additions and 8 deletions

View file

@ -3484,7 +3484,7 @@ PyDec_Round(PyObject *dec, PyObject *args)
}
}
PyObject *DecimalTuple = NULL;
static PyObject *DecimalTuple = NULL;
/* Return the DecimalTuple representation of a PyDecObject. */
static PyObject *
PyDec_AsTuple(PyObject *dec, PyObject *dummy UNUSED)