diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2014-06-18 01:25:23 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2014-06-18 01:25:23 (GMT) |
commit | 64d750b36bbc60c354b9d486ae578c729a74afd9 (patch) | |
tree | 463b71740c06c97898c75f7415c7364418f6f378 /Doc | |
parent | c73701de7292b7de0fee5b7f82a610d7515c18a4 (diff) | |
download | cpython-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.rst | 4 |
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. |