]> granicus.if.org Git - python/commitdiff
#25916: fix a few 'string of bytes' references.
authorR David Murray <rdmurray@bitdance.com>
Wed, 24 Aug 2016 00:43:56 +0000 (20:43 -0400)
committerR David Murray <rdmurray@bitdance.com>
Wed, 24 Aug 2016 00:43:56 +0000 (20:43 -0400)
Patch by SilengGhost.

Doc/howto/unicode.rst
Doc/library/logging.config.rst
Doc/library/sunau.rst
Doc/library/wave.rst

index fbeb11aac9ab3870991ae716863ed63f935e5fa7..a48ae1f5faba7e2fbe1e12307fe51cc9c67ca906 100644 (file)
@@ -192,7 +192,7 @@ frequently used than UTF-8.)  UTF-8 uses the following rules:
 UTF-8 has several convenient properties:
 
 1. It can handle any Unicode code point.
-2. A Unicode string is turned into a string of bytes containing no embedded zero
+2. A Unicode string is turned into a sequence of bytes containing no embedded zero
    bytes.  This avoids byte-ordering issues, and means UTF-8 strings can be
    processed by C functions such as ``strcpy()`` and sent through protocols that
    can't handle zero bytes.
index b4c9bc3dc10f2ad82f38a77a85b3b5f75b0ad0e0..794cd22e5b077b2967670c9312b76f06f0c27a37 100644 (file)
@@ -144,7 +144,7 @@ in :mod:`logging` itself) and defining handlers which are declared either in
    (perhaps if decryption were performed).
 
    To send a configuration to the socket, read in the configuration file and
-   send it to the socket as a string of bytes preceded by a four-byte length
+   send it to the socket as a sequence of bytes preceded by a four-byte length
    string packed in binary using ``struct.pack('>L', n)``.
 
    .. note::
index d0fd0a3cc7f8e90eba7ec62f14e1142b7193f828..1ecc7a7cf92bd0a5ec3e48d2f8c64d29e9a82716 100644 (file)
@@ -158,7 +158,7 @@ AU_read objects, as returned by :func:`.open` above, have the following methods:
 
 .. method:: AU_read.readframes(n)
 
-   Reads and returns at most *n* frames of audio, as a string of bytes.  The data
+   Reads and returns at most *n* frames of audio, as a :class:`bytes` object.  The data
    will be returned in linear format.  If the original data is in u-LAW format, it
    will be converted.
 
index 71443797848609312f978bb70b7a05a90ff52168..a9b3205322d7d29d640b726b4ecabdc25a994112 100644 (file)
@@ -112,7 +112,7 @@ Wave_read objects, as returned by :func:`.open`, have the following methods:
 
 .. method:: Wave_read.readframes(n)
 
-   Reads and returns at most *n* frames of audio, as a string of bytes.
+   Reads and returns at most *n* frames of audio, as a :class:`bytes` object.
 
 
 .. method:: Wave_read.rewind()