[Python-checkins] peps: PEP 460: 8-bit string => bytes string

victor.stinner python-checkins at python.org
Thu Jan 9 00:15:04 CET 2014


http://hg.python.org/peps/rev/286d2a6182dd
changeset:   5340:286d2a6182dd
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Thu Jan 09 00:14:57 2014 +0100
summary:
  PEP 460: 8-bit string => bytes string

files:
  pep-0460.txt |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/pep-0460.txt b/pep-0460.txt
--- a/pep-0460.txt
+++ b/pep-0460.txt
@@ -29,7 +29,7 @@
 =========
 
 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.
 

-- 
Repository URL: http://hg.python.org/peps


More information about the Python-checkins mailing list