diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2020-09-28 08:39:02 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2020-09-28 08:39:02 -0600 |
commit | 3d37ebccf696d8b186e11df99f3940441919f1c2 (patch) | |
tree | 8fcf924a038b1638c9d4e4322a73607769f1554b | |
parent | 33e1dbee8d9e11a3e96efaae822ff6f3c44e3cef (diff) | |
download | numpy-3d37ebccf696d8b186e11df99f3940441919f1c2.tar.gz |
MAINT: Remove old debug print statement.
This looks like an old debug statement that should have been removed
long ago. The C stdio.h header is nowhere imported and PyInt_Type no
longer exists in Python 3.
-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); |