Staging
v0.5.1
https://github.com/python/cpython
Revision 8d62df60d8733d0fa9aee14ef746d0009a7a9726 authored by Daniel Hillier on 30 November 2019, 08:30:47 UTC, committed by Serhiy Storchaka on 30 November 2019, 08:30:47 UTC
Raises ValueError when calling the following on a closed zipfile.ZipExtFile: read, readable, seek, seekable, tell.
1 parent 1df65f7
Raw File
Tip revision: 8d62df60d8733d0fa9aee14ef746d0009a7a9726 authored by Daniel Hillier on 30 November 2019, 08:30:47 UTC
bpo-37523: Raise ValueError for I/O operations on a closed zipfile.ZipExtFile. (GH-14658)
Tip revision: 8d62df6
ipc.rst
.. _ipc:

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

The modules described in this chapter provide mechanisms for
networking and inter-processes communication.

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

The list of modules described in this chapter is:


.. toctree::
   :maxdepth: 1

   asyncio.rst
   socket.rst
   ssl.rst
   select.rst
   selectors.rst
   asyncore.rst
   asynchat.rst
   signal.rst
   mmap.rst
back to top