diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-02-25 13:23:51 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-02-25 13:23:51 (GMT) |
commit | 532c69a4280185de3faf198776b6d5d75bdec095 (patch) | |
tree | ff6a0b0b0d8b5ebd3ac4e4aa40e2b530d287cbc7 /Doc | |
parent | 615a58eaabde8df2db51b435d712733bc9ce5a86 (diff) | |
download | cpython-532c69a4280185de3faf198776b6d5d75bdec095.zip cpython-532c69a4280185de3faf198776b6d5d75bdec095.tar.gz cpython-532c69a4280185de3faf198776b6d5d75bdec095.tar.bz2 |
asyncio doc: begin with warnings on asyncio traps
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/asyncio.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/library/asyncio.rst b/Doc/library/asyncio.rst index 117721c..9b4d65e 100644 --- a/Doc/library/asyncio.rst +++ b/Doc/library/asyncio.rst @@ -46,6 +46,11 @@ Here is a more detailed list of the package contents: you absolutely, positively have to use a library that makes blocking I/O calls. +Asynchronous programming is more complex than classical "sequential" +programming: see the :ref:`Develop with asyncio <asyncio-dev>` page which lists +common traps and explains how to avoid them. :ref:`Enable the debug mode +<asyncio-debug-mode>` during development to detect common issues. + Table of contents: .. toctree:: |