diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-11-02 12:44:29 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-11-02 12:44:29 (GMT) |
commit | 4a7c03aab455613e9ba898b7cae73459fadd57ac (patch) | |
tree | d09ea360154f3e045e2f5a76a172b0e6417fc957 /Doc/library/pickle.rst | |
parent | df8f5b56c9dc5e950f39ed0221212256a39c1835 (diff) | |
parent | f51d715845dfede2803ef7a2e6ea4e2a03f18486 (diff) | |
download | cpython-4a7c03aab455613e9ba898b7cae73459fadd57ac.zip cpython-4a7c03aab455613e9ba898b7cae73459fadd57ac.tar.gz cpython-4a7c03aab455613e9ba898b7cae73459fadd57ac.tar.bz2 |
Issue #25523: Merge a-to-an corrections from 3.5.
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 0cce600..2419277 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. |