summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-01-09 14:58:41 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2015-01-09 14:58:41 (GMT)
commita092a615f5243a68c01e9a9233283f6cccb3b03e (patch)
tree1d7719e383032f2dc1b202fb089c11f150b5d258
parent3531d9044dbfd15b3bf5ec1abe5b9744fce37464 (diff)
downloadcpython-a092a615f5243a68c01e9a9233283f6cccb3b03e.zip
cpython-a092a615f5243a68c01e9a9233283f6cccb3b03e.tar.gz
cpython-a092a615f5243a68c01e9a9233283f6cccb3b03e.tar.bz2
asyncio doc: fix section of event loop examples
-rw-r--r--Doc/library/asyncio-eventloop.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/Doc/library/asyncio-eventloop.rst b/Doc/library/asyncio-eventloop.rst
index 748d4e3..12e60c4 100644
--- a/Doc/library/asyncio-eventloop.rst
+++ b/Doc/library/asyncio-eventloop.rst
@@ -681,12 +681,12 @@ Handle
Event loop examples
-===================
+-------------------
.. _asyncio-hello-world-callback:
Hello World with call_soon()
-----------------------------
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Example using the :meth:`BaseEventLoop.call_soon` method to schedule a
callback. The callback displays ``"Hello World"`` and then stops the event
@@ -716,7 +716,7 @@ loop::
.. _asyncio-date-callback:
Display the current date with call_later()
-------------------------------------------
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Example of callback displaying the current date every second. The callback uses
the :meth:`BaseEventLoop.call_later` method to reschedule itself during 5
@@ -752,7 +752,7 @@ seconds, and then stops the event loop::
.. _asyncio-watch-read-event:
Watch a file descriptor for read events
----------------------------------------
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Wait until a file descriptor received some data using the
:meth:`BaseEventLoop.add_reader` method and then close the event loop::
@@ -801,7 +801,7 @@ Wait until a file descriptor received some data using the
Set signal handlers for SIGINT and SIGTERM
-------------------------------------------
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Register handlers for signals :py:data:`SIGINT` and :py:data:`SIGTERM` using
the :meth:`BaseEventLoop.add_signal_handler` method::