diff options
author | Nicolas Scheffer <nicolas.scheffer@sri.com> | 2012-11-12 21:40:38 -0800 |
---|---|---|
committer | Nicolas Scheffer <nicolas.scheffer@sri.com> | 2012-11-12 21:40:38 -0800 |
commit | e31eb4bb807dc58f112abdf79056806cafac7f9c (patch) | |
tree | 7a568ea2fc712e56e389e4586a1144ca9b3799ee /numpy/core/blasdot | |
parent | ea037770e03f23aca1a06274a1a8e8bf0e0e2ee4 (diff) | |
download | numpy-e31eb4bb807dc58f112abdf79056806cafac7f9c.tar.gz |
Removed trailing printf statement
Diffstat (limited to 'numpy/core/blasdot')
-rw-r--r-- | numpy/core/blasdot/_dotblas.c | 1 |
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); |