This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author rhettinger
Recipients docs@python, rhettinger
Date 2015-08-17.04:32:47
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1439785967.22.0.910527052706.issue24878@psf.upfronthosting.co.za>
In-reply-to
Content
For example:

>>> import sched
>>> help(sched.Event)

class Event(Event)
 |  Event(time, priority, action, argument, kwargs)
 | 
...
 |  ----------------------------------------------------------------------
 |  Data descriptors inherited from Event:
 |  
 |  action
 |      Executing the event means executing
 |      action(*argument, **kwargs)
 |  
 |  argument
 |      argument is a sequence holding the positional
 |      arguments for the action.
 |  
 |  kwargs
 |      kwargs is a dictionary holding the keyword
 |      arguments for the action.
 |  
 |  priority
 |      Events scheduled for the same time will be executed
 |      in the order of their priority.
 |  
 |  time
 |      Numeric type compatible with the return value of the
 |      timefunc function passed to the constructor.
History
Date User Action Args
2015-08-17 04:32:47rhettingersetrecipients: + rhettinger, docs@python
2015-08-17 04:32:47rhettingersetmessageid: <1439785967.22.0.910527052706.issue24878@psf.upfronthosting.co.za>
2015-08-17 04:32:47rhettingerlinkissue24878 messages
2015-08-17 04:32:47rhettingercreate