summaryrefslogtreecommitdiff
path: root/numpy/core/blasdot
diff options
context:
space:
mode:
authorNicolas Scheffer <nicolas.scheffer@sri.com>2012-11-12 21:40:38 -0800
committerNicolas Scheffer <nicolas.scheffer@sri.com>2012-11-12 21:40:38 -0800
commite31eb4bb807dc58f112abdf79056806cafac7f9c (patch)
tree7a568ea2fc712e56e389e4586a1144ca9b3799ee /numpy/core/blasdot
parentea037770e03f23aca1a06274a1a8e8bf0e0e2ee4 (diff)
downloadnumpy-e31eb4bb807dc58f112abdf79056806cafac7f9c.tar.gz
Removed trailing printf statement
Diffstat (limited to 'numpy/core/blasdot')
-rw-r--r--numpy/core/blasdot/_dotblas.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/numpy/core/blasdot/_dotblas.c b/numpy/core/blasdot/_dotblas.c
index e860a5d0e..29d781a35 100644
--- a/numpy/core/blasdot/_dotblas.c
+++ b/numpy/core/blasdot/_dotblas.c
@@ -770,7 +770,6 @@ dotblas_matrixproduct(PyObject *NPY_UNUSED(dummy), PyObject *args, PyObject* kwa
* using appropriate values of Order, Trans1, and Trans2.
*/
if (!PyArray_IS_C_CONTIGUOUS(ap2) && !PyArray_IS_F_CONTIGUOUS(ap2)) {
- printf("AA");
PyObject *new = PyArray_Copy(ap2);
Py_DECREF(ap2);