[Python-checkins] cpython (3.4): asyncio doc: fix section of event loop examples

victor.stinner python-checkins at python.org
Fri Jan 9 16:00:50 CET 2015


https://hg.python.org/cpython/rev/f2b9fac7d040
changeset:   94088:f2b9fac7d040
branch:      3.4
parent:      94085:d07386812daa
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Fri Jan 09 15:58:41 2015 +0100
summary:
  asyncio doc: fix section of event loop examples

files:
  Doc/library/asyncio-eventloop.rst |  10 +++++-----
  1 files changed, 5 insertions(+), 5 deletions(-)


diff --git a/Doc/library/asyncio-eventloop.rst b/Doc/library/asyncio-eventloop.rst
--- a/Doc/library/asyncio-eventloop.rst
+++ b/Doc/library/asyncio-eventloop.rst
@@ -681,12 +681,12 @@
 
 
 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 @@
 .. _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 @@
 .. _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 @@
 
 
 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::

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list