SetTimeoutOrInterval now takes an integer. Not part of the default build.

git-svn-id: svn://10.0.0.236/trunk@201929 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
mhammond%skippinet.com.au
2006-07-12 12:00:10 +00:00
parent 61bfb53fda
commit 8e5c5a3160

View File

@@ -194,9 +194,9 @@ static PyObject *PySetTimeoutOrInterval(PyObject *self, PyObject *args)
PyObject *obTarget;
PyObject *obHandler;
PyObject *obArgs;
double interval;
int interval;
int isInterval;
if (!PyArg_ParseTuple(args, "OdOO!i:SetTimeoutOrInterval", &obTarget,
if (!PyArg_ParseTuple(args, "OiOO!i:SetTimeoutOrInterval", &obTarget,
&interval, &obHandler,
&PyTuple_Type, &obArgs,
&isInterval))