summaryrefslogtreecommitdiffstats
path: root/Doc/library/asyncio-protocol.rst
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-02-25 13:24:15 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2015-02-25 13:24:15 (GMT)
commit83704963c0d4e7b1474d6102ed6287a7ae4907a8 (patch)
tree2c959817bccdef128ceca8f8f95311bbd693175f /Doc/library/asyncio-protocol.rst
parent532c69a4280185de3faf198776b6d5d75bdec095 (diff)
downloadcpython-83704963c0d4e7b1474d6102ed6287a7ae4907a8.zip
cpython-83704963c0d4e7b1474d6102ed6287a7ae4907a8.tar.gz
cpython-83704963c0d4e7b1474d6102ed6287a7ae4907a8.tar.bz2
asyncio: add a note about (non) thread safety in each class
Diffstat (limited to 'Doc/library/asyncio-protocol.rst')
-rw-r--r--Doc/library/asyncio-protocol.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/library/asyncio-protocol.rst b/Doc/library/asyncio-protocol.rst
index b6fcc48..2e671e8 100644
--- a/Doc/library/asyncio-protocol.rst
+++ b/Doc/library/asyncio-protocol.rst
@@ -23,6 +23,8 @@ then call the transport's methods for various purposes.
subprocess pipes. The methods available on a transport depend on
the transport's kind.
+The transport classes are :ref:`not thread safe <asyncio-multithreading>`.
+
BaseTransport
-------------