Commit 17473347 authored by Naglis's avatar Naglis Committed by Miss Islington (bot)

bpo-35395: fix typos in asyncio eventloop documentation (GH-10880)



Fixes `loop.add_writer` and `loop.add_signal_handler` method documentation to correctly reference the callback parameter from method signature.


https://bugs.python.org/issue35395
parent 8ca0fa9d
......@@ -756,7 +756,7 @@ Watching file descriptors
writing.
Use :func:`functools.partial` :ref:`to pass keyword arguments
<asyncio-pass-keywords>` to *func*.
<asyncio-pass-keywords>` to *callback*.
.. method:: loop.remove_writer(fd)
......@@ -970,7 +970,7 @@ Unix signals
Raise :exc:`RuntimeError` if there is a problem setting up the handler.
Use :func:`functools.partial` :ref:`to pass keyword arguments
<asyncio-pass-keywords>` to *func*.
<asyncio-pass-keywords>` to *callback*.
.. method:: loop.remove_signal_handler(sig)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment