[Python-checkins] Fix trivial typo in pickle.rst (GH-4955) (#4958)

Serhiy Storchaka webhook-mailer at python.org
Thu Dec 21 04:11:10 EST 2017


https://github.com/python/cpython/commit/45588c6dd1e8644abf7dde42f566a8f81c7cc4f0
commit: 45588c6dd1e8644abf7dde42f566a8f81c7cc4f0
branch: 3.6
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: Serhiy Storchaka <storchaka at gmail.com>
date: 2017-12-21T11:11:06+02:00
summary:

Fix trivial typo in pickle.rst (GH-4955) (#4958)

(cherry picked from commit a8d25a16452f7ee8dfc350cd028b3ae172d28ada)

files:
M Doc/library/pickle.rst

diff --git a/Doc/library/pickle.rst b/Doc/library/pickle.rst
index 6e8430fa8e6..d0c4cf937c8 100644
--- a/Doc/library/pickle.rst
+++ b/Doc/library/pickle.rst
@@ -370,7 +370,7 @@ The :mod:`pickle` module exports two classes, :class:`Pickler` and
    Python 2 names to the new names used in Python 3.  The *encoding* and
    *errors* tell pickle how to decode 8-bit string instances pickled by Python
    2; these default to 'ASCII' and 'strict', respectively.  The *encoding* can
-   be 'bytes' to read these ß8-bit string instances as bytes objects.
+   be 'bytes' to read these 8-bit string instances as bytes objects.
 
    .. method:: load()
 



More information about the Python-checkins mailing list