Staging
v0.5.1
https://github.com/python/cpython
Revision c126fdc0bddc9f52d3bc859104741976a6fad9b5 authored by Larry Hastings on 19 July 2018, 12:12:59 UTC, committed by Larry Hastings on 19 July 2018, 12:12:59 UTC
1 parent 9a6c8e9
Raw File
Tip revision: c126fdc0bddc9f52d3bc859104741976a6fad9b5 authored by Larry Hastings on 19 July 2018, 12:12:59 UTC
Version bump for 3.4.9rc1.
Tip revision: c126fdc
binary.rst
.. _binaryservices:

********************
Binary Data Services
********************

The modules described in this chapter provide some basic services operations
for manipulation of binary data. Other operations on binary data, specifically
in relation to file formats and network protocols, are described in the
relevant sections.

Some libraries described under :ref:`textservices` also work with either
ASCII-compatible binary formats (for example, :mod:`re`) or all binary data
(for example, :mod:`difflib`).

In addition, see the documentation for Python's built-in binary data types in
:ref:`binaryseq`.

.. toctree::

   struct.rst
   codecs.rst

back to top