Truncate an interminable sentence (sorry Nick :-).

This commit is contained in:
Guido van Rossum 2014-03-29 21:26:23 -07:00
parent 5cdc151d8e
commit cb3eaf0508
1 changed files with 1 additions and 5 deletions

View File

@ -22,11 +22,7 @@ the binary domain in Python have also evolved over the course of the Python
This PEP proposes a number of small adjustments to the APIs of the ``bytes`` This PEP proposes a number of small adjustments to the APIs of the ``bytes``
and ``bytearray`` types to make their behaviour more internally consistent and ``bytearray`` types to make their behaviour more internally consistent
and to make it easier to operate entirely in the binary domain for use cases and to make it easier to operate entirely in the binary domain.
that actually involve manipulating binary data directly, rather than
converting it to a more structured form with additional modelling
semantics (such as ``str``) and then converting back to binary format after
processing.
Background Background