diff options
author | Yury Selivanov <yury@magic.io> | 2018-09-14 23:57:11 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-14 23:57:11 (GMT) |
commit | 805e27eff65d51f7aea2c00ccbb4f5d44f4499f2 (patch) | |
tree | 1a41e7b052f4d0845c29a6c9bcf594f0d0cffe63 /Doc/library/ipc.rst | |
parent | afde1c1a05cc8a1e8adf6403c451f6708509a605 (diff) | |
download | cpython-805e27eff65d51f7aea2c00ccbb4f5d44f4499f2.zip cpython-805e27eff65d51f7aea2c00ccbb4f5d44f4499f2.tar.gz cpython-805e27eff65d51f7aea2c00ccbb4f5d44f4499f2.tar.bz2 |
bpo-33649: Fix asyncio-dev (GH-9324)
Diffstat (limited to 'Doc/library/ipc.rst')
-rw-r--r-- | Doc/library/ipc.rst | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Doc/library/ipc.rst b/Doc/library/ipc.rst index 8f5b3b2..b88a174 100644 --- a/Doc/library/ipc.rst +++ b/Doc/library/ipc.rst @@ -1,11 +1,11 @@ .. _ipc: ***************************************** -Interprocess Communication and Networking +Networking and Interprocess Communication ***************************************** -The modules described in this chapter provide mechanisms for different processes -to communicate. +The modules described in this chapter provide mechanisms for +networking and inter-processes communication. Some modules only work for two processes that are on the same machine, e.g. :mod:`signal` and :mod:`mmap`. Other modules support networking protocols @@ -15,6 +15,7 @@ The list of modules described in this chapter is: .. toctree:: + :maxdepth: 1 asyncio.rst socket.rst |