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