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:
@@ -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))
|
||||
|
||||
Reference in New Issue
Block a user