diff options
author | Sebastian Berg <sebastian@sipsolutions.net> | 2020-09-28 10:28:20 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-28 10:28:20 -0500 |
commit | 821c53daa1261a6285cb85c106eab25c4d88ea2a (patch) | |
tree | 8fcf924a038b1638c9d4e4322a73607769f1554b | |
parent | 33e1dbee8d9e11a3e96efaae822ff6f3c44e3cef (diff) | |
parent | 3d37ebccf696d8b186e11df99f3940441919f1c2 (diff) | |
download | numpy-821c53daa1261a6285cb85c106eab25c4d88ea2a.tar.gz |
Merge pull request #17388 from charris/cleanup-debug-print
MAINT: Remove old debug print statement.
-rw-r--r-- | numpy/core/src/multiarray/multiarraymodule.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/numpy/core/src/multiarray/multiarraymodule.c b/numpy/core/src/multiarray/multiarraymodule.c index f1d5ab694..ff2b796d2 100644 --- a/numpy/core/src/multiarray/multiarraymodule.c +++ b/numpy/core/src/multiarray/multiarraymodule.c @@ -4409,12 +4409,6 @@ setup_scalartypes(PyObject *NPY_UNUSED(dict)) /* Timedelta is an integer with an associated unit */ SINGLE_INHERIT(Timedelta, SignedInteger); - /* - fprintf(stderr, - "tp_free = %p, PyObject_Del = %p, int_tp_free = %p, base.tp_free = %p\n", - PyIntArrType_Type.tp_free, PyObject_Del, PyInt_Type.tp_free, - PySignedIntegerArrType_Type.tp_free); - */ SINGLE_INHERIT(UByte, UnsignedInteger); SINGLE_INHERIT(UShort, UnsignedInteger); SINGLE_INHERIT(UInt, UnsignedInteger); |