Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 29360893df0931703cb2fe0c0fbc0fc963e64ead authored by Georg Brandl on 20 February 2011, 10:31:59 UTC
Make a 3.2 maintenance branch.
Tip revision: 2936089
ipc.rst
.. _ipc:

*****************************************
Interprocess Communication and Networking
*****************************************

The modules described in this chapter provide mechanisms for different processes
to communicate.

Some modules only work for two processes that are on the same machine, e.g.
:mod:`signal` and :mod:`subprocess`.  Other modules support networking protocols
that two or more processes can used to communicate across machines.

The list of modules described in this chapter is:


.. toctree::

   subprocess.rst
   socket.rst
   ssl.rst
   signal.rst
   asyncore.rst
   asynchat.rst
back to top