summaryrefslogtreecommitdiffstats
path: root/Doc/library/pickle.rst
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2015-11-02 04:27:17 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2015-11-02 04:27:17 (GMT)
commite56a9191000d2ff15d7550b9c852fa6dee9b8f50 (patch)
tree20b3d1d4f881f7c9e9b3549f79719497070b530a /Doc/library/pickle.rst
parent9785261d68f62ce33968d15c7a0f10f1f8209807 (diff)
parentd2ad5718ad955a13cf570bacad1d7800d995da33 (diff)
downloadcpython-e56a9191000d2ff15d7550b9c852fa6dee9b8f50.zip
cpython-e56a9191000d2ff15d7550b9c852fa6dee9b8f50.tar.gz
cpython-e56a9191000d2ff15d7550b9c852fa6dee9b8f50.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.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/pickle.rst b/Doc/library/pickle.rst
index 2aab909..0cce600 100644
--- a/Doc/library/pickle.rst
+++ b/Doc/library/pickle.rst
@@ -221,7 +221,7 @@ process more convenient:
The argument *file* must have two methods, a read() method that takes an
integer argument, and a readline() method that requires no arguments. Both
methods should return bytes. Thus *file* can be an on-disk file opened for
- binary reading, a :class:`io.BytesIO` object, or any other custom object
+ binary reading, an :class:`io.BytesIO` object, or any other custom object
that meets this interface.
Optional keyword arguments are *fix_imports*, *encoding* and *errors*,
@@ -357,7 +357,7 @@ The :mod:`pickle` module exports two classes, :class:`Pickler` and
The argument *file* must have two methods, a read() method that takes an
integer argument, and a readline() method that requires no arguments. Both
methods should return bytes. Thus *file* can be an on-disk file object
- opened for binary reading, a :class:`io.BytesIO` object, or any other
+ opened for binary reading, an :class:`io.BytesIO` object, or any other
custom object that meets this interface.
Optional keyword arguments are *fix_imports*, *encoding* and *errors*,