diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2012-12-29 18:59:29 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2012-12-29 18:59:29 (GMT) |
commit | d1ced9e86a4652366e574a880636c7bd804f5475 (patch) | |
tree | 4515afd274f229c424403a4933468a0d98679c97 /Doc | |
parent | 49f7e58778733dbb86dad145dd35f906fd5bafbb (diff) | |
parent | e912496c6025581f8f1554c9cda92ae73f2514e5 (diff) | |
download | cpython-d1ced9e86a4652366e574a880636c7bd804f5475.zip cpython-d1ced9e86a4652366e574a880636c7bd804f5475.tar.gz cpython-d1ced9e86a4652366e574a880636c7bd804f5475.tar.bz2 |
Issue #16642: Document kwargs field in sched.Event named tuple.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/sched.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/library/sched.rst b/Doc/library/sched.rst index d6c86c7..f6bd43f 100644 --- a/Doc/library/sched.rst +++ b/Doc/library/sched.rst @@ -27,6 +27,7 @@ scheduler: .. versionchanged:: 3.3 *timefunc* and *delayfunc* parameters are optional. + .. versionchanged:: 3.3 :class:`scheduler` class can be safely used in multi-threaded environments. @@ -129,4 +130,4 @@ Scheduler Objects Read-only attribute returning a list of upcoming events in the order they will be run. Each event is shown as a :term:`named tuple` with the - following fields: time, priority, action, argument. + following fields: time, priority, action, argument, kwargs. |