passing args to tasks

If you need to access task.time, or other members of the Task structure, then you should explicitly include the Task structure as part of the extraArgs list.

task = Task(self.myCallback)
taskMgr.add(task, extraArgs = [task, myArg1, myArg2])

David