diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-11-02 12:39:05 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-11-02 12:39:05 (GMT) |
commit | a84f6c3dd3ef02bdbbc67b4cd1223749f3c39030 (patch) | |
tree | e8ac219e151be6bdf4ea4e3fbc229f247e0b7b4b /Doc/library/pickle.rst | |
parent | d2ad5718ad955a13cf570bacad1d7800d995da33 (diff) | |
parent | d65c9496da3485ac077fa8fd374b061afdd3605e (diff) | |
download | cpython-a84f6c3dd3ef02bdbbc67b4cd1223749f3c39030.zip cpython-a84f6c3dd3ef02bdbbc67b4cd1223749f3c39030.tar.gz cpython-a84f6c3dd3ef02bdbbc67b4cd1223749f3c39030.tar.bz2 |
Issue #25523: Merge a-to-an corrections from 3.4.
Diffstat (limited to 'Doc/library/pickle.rst')
-rw-r--r-- | Doc/library/pickle.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/pickle.rst b/Doc/library/pickle.rst index 36b43b4..7e09b03 100644 --- a/Doc/library/pickle.rst +++ b/Doc/library/pickle.rst @@ -192,7 +192,7 @@ process more convenient: number is specified, :data:`HIGHEST_PROTOCOL` is selected. The *file* argument must have a write() method that accepts a single bytes - argument. It can thus be an on-disk file opened for binary writing, a + argument. It can thus be an on-disk file opened for binary writing, an :class:`io.BytesIO` instance, or any other custom object that meets this interface. @@ -288,7 +288,7 @@ The :mod:`pickle` module exports two classes, :class:`Pickler` and number is specified, :data:`HIGHEST_PROTOCOL` is selected. The *file* argument must have a write() method that accepts a single bytes - argument. It can thus be an on-disk file opened for binary writing, a + argument. It can thus be an on-disk file opened for binary writing, an :class:`io.BytesIO` instance, or any other custom object that meets this interface. |