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