Staging
v0.5.1
https://github.com/python/cpython
Revision 23dd65bd884c5dc24087cdc5c1890bd55ced961e authored by Georg Brandl on 29 October 2014, 07:18:43 UTC, committed by Georg Brandl on 29 October 2014, 07:18:43 UTC
1 parent ecc0cc0
Raw File
Tip revision: 23dd65bd884c5dc24087cdc5c1890bd55ced961e authored by Georg Brandl on 29 October 2014, 07:18:43 UTC
Doc readme: Fix markup, use https:// URLs.
Tip revision: 23dd65b
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
   popen2.rst
   asyncore.rst
   asynchat.rst
back to top