blob: c873065472cf182f5b9c6a9f71e19641a3cfb22b [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001.. _ipc:
2
3*****************************************
4Interprocess Communication and Networking
5*****************************************
6
7The modules described in this chapter provide mechanisms for different processes
8to communicate.
9
10Some modules only work for two processes that are on the same machine, e.g.
11:mod:`signal` and :mod:`subprocess`. Other modules support networking protocols
12that two or more processes can used to communicate across machines.
13
14The list of modules described in this chapter is:
15
16
17.. toctree::
18
19 subprocess.rst
20 socket.rst
Thomas Woutersed03b412007-08-28 21:37:11 +000021 ssl.rst
Georg Brandl116aa622007-08-15 14:28:22 +000022 signal.rst
23 asyncore.rst
24 asynchat.rst