summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-06-18 01:25:23 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2014-06-18 01:25:23 (GMT)
commit64d750b36bbc60c354b9d486ae578c729a74afd9 (patch)
tree463b71740c06c97898c75f7415c7364418f6f378 /Doc
parentc73701de7292b7de0fee5b7f82a610d7515c18a4 (diff)
downloadcpython-64d750b36bbc60c354b9d486ae578c729a74afd9.zip
cpython-64d750b36bbc60c354b9d486ae578c729a74afd9.tar.gz
cpython-64d750b36bbc60c354b9d486ae578c729a74afd9.tar.bz2
asyncio: Fix pyflakes errors
- Add a missing import - Remove an unused import - Remove unused variables
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/asyncio-eventloop.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/library/asyncio-eventloop.rst b/Doc/library/asyncio-eventloop.rst
index 7717b7a..480a8e1 100644
--- a/Doc/library/asyncio-eventloop.rst
+++ b/Doc/library/asyncio-eventloop.rst
@@ -588,10 +588,14 @@ Debug mode
Get the debug mode (:class:`bool`) of the event loop, ``False`` by default.
+ .. versionadded:: 3.4.2
+
.. method:: BaseEventLoop.set_debug(enabled: bool)
Set the debug mode of the event loop.
+ .. versionadded:: 3.4.2
+
.. seealso::
The :ref:`Develop with asyncio <asyncio-dev>` section.