Remove debugging lines.

This commit is contained in:
Anthony Tuininga 2016-02-24 12:02:04 -07:00
parent 9aa9de0526
commit 2d73b12325

View File

@ -426,7 +426,6 @@ static PyObject *NativeIntVar_GetValue(
udt_NativeIntVar *var, // variable to determine value for
unsigned pos) // array position
{
//printf("Getting native integer (value %ld)\n", var->data[pos]);
return PyInt_FromLong(var->data[pos]);
}
@ -445,7 +444,6 @@ static int NativeIntVar_SetValue(
return -1;
}
var->data[pos] = PyInt_AsLong(value);
//printf("Setting native integer to value %ld:\n", var->data[pos]);
if (PyErr_Occurred())
return -1;
return 0;