Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1 | .. _ipc: |
| 2 | |
| 3 | ***************************************** |
| 4 | Interprocess Communication and Networking |
| 5 | ***************************************** |
| 6 | |
| 7 | The modules described in this chapter provide mechanisms for different processes |
| 8 | to communicate. |
| 9 | |
| 10 | Some 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 |
| 12 | that two or more processes can used to communicate across machines. |
| 13 | |
| 14 | The list of modules described in this chapter is: |
| 15 | |
| 16 | |
| 17 | .. toctree:: |
| 18 | |
| 19 | subprocess.rst |
| 20 | socket.rst |
Thomas Wouters | ed03b41 | 2007-08-28 21:37:11 +0000 | [diff] [blame] | 21 | ssl.rst |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 22 | signal.rst |
| 23 | asyncore.rst |
| 24 | asynchat.rst |