summaryrefslogtreecommitdiffstats
path: root/Doc/library/sched.rst
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2012-12-29 18:57:52 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2012-12-29 18:57:52 (GMT)
commite912496c6025581f8f1554c9cda92ae73f2514e5 (patch)
tree497c4a18650b2edb7069d5271074bd2fcf2550b9 /Doc/library/sched.rst
parent6464b84b3ed28b0e66e27f180903b334151cbc70 (diff)
downloadcpython-e912496c6025581f8f1554c9cda92ae73f2514e5.zip
cpython-e912496c6025581f8f1554c9cda92ae73f2514e5.tar.gz
cpython-e912496c6025581f8f1554c9cda92ae73f2514e5.tar.bz2
Issue #16642: Document kwargs field in sched.Event named tuple.
Diffstat (limited to 'Doc/library/sched.rst')
-rw-r--r--Doc/library/sched.rst3
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.