PEP 460: 8-bit string => bytes string

This commit is contained in:
Victor Stinner 2014-01-09 00:14:57 +01:00
parent 19f33e611b
commit 5e32c6c6cf
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ Rationale
=========
In Python 2, ``str % args`` and ``str.format(args)`` allow the formatting
and interpolation of 8-bit strings. This feature has commonly been used
and interpolation of bytes strings. This feature has commonly been used
for the assembling of protocol messages when protocols are known to use
a fixed encoding.