|
From: <and...@us...> - 2008-12-15 09:56:35
|
Revision: 9111
http://plplot.svn.sourceforge.net/plplot/?rev=9111&view=rev
Author: andrewross
Date: 2008-12-15 09:56:32 +0000 (Mon, 15 Dec 2008)
Log Message:
-----------
Remove printf debugging message. This message is unnecessary and
generates a warning about incorrect type formats on a 64-bit machine.
Modified Paths:
--------------
trunk/bindings/python/plplotcmodule.i
Modified: trunk/bindings/python/plplotcmodule.i
===================================================================
--- trunk/bindings/python/plplotcmodule.i 2008-12-15 09:50:50 UTC (rev 9110)
+++ trunk/bindings/python/plplotcmodule.i 2008-12-15 09:56:32 UTC (rev 9111)
@@ -435,7 +435,6 @@
tmp = (PyArrayObject *)myArray_ContiguousFromObject($input, PyArray_PLFLT, 2, 2);
if(tmp == NULL) return NULL;
if(tmp->dimensions[0] != Xlen || tmp->dimensions[1] != Ylen) {
- printf("%d %d %d %d\n",tmp->dimensions[0],Xlen,tmp->dimensions[1],Ylen);
PyErr_SetString(PyExc_ValueError, "Vectors must match matrix.");
return NULL;
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|