Issue #16642: Document kwargs field in sched.Event named tuple.
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 @@
.. 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 @@
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.