summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2014-03-15 16:49:49 (GMT)
committerBenjamin Peterson <benjamin@python.org>2014-03-15 16:49:49 (GMT)
commitce68c19ee7fc27eea1b1a0abbfab316d93876ed4 (patch)
treeaa3bd2a3849f441b9575f19b3d806ec574c32b84
parentfdbe918eb0c0b1c3b812ccdfa49c7bd7d44099b7 (diff)
downloadcpython-ce68c19ee7fc27eea1b1a0abbfab316d93876ed4.zip
cpython-ce68c19ee7fc27eea1b1a0abbfab316d93876ed4.tar.gz
cpython-ce68c19ee7fc27eea1b1a0abbfab316d93876ed4.tar.bz2
remove unused zero constants
-rw-r--r--Modules/_decimal/_decimal.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/Modules/_decimal/_decimal.c b/Modules/_decimal/_decimal.c
index ac20308..ea5253e 100644
--- a/Modules/_decimal/_decimal.c
+++ b/Modules/_decimal/_decimal.c
@@ -3928,9 +3928,6 @@ nm_mpd_qdivmod(PyObject *v, PyObject *w)
return ret;
}
-static mpd_uint_t data_zero[1] = {0};
-static const mpd_t zero = {MPD_STATIC|MPD_CONST_DATA, 0, 1, 1, 1, data_zero};
-
static PyObject *
nm_mpd_qpow(PyObject *base, PyObject *exp, PyObject *mod)
{