From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Thu, 21 Dec 2017 09:11:06 +0000 (-0800) Subject: Fix trivial typo in pickle.rst (GH-4955) (#4958) X-Git-Tag: v3.6.5rc1~187 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=45588c6dd1e8644abf7dde42f566a8f81c7cc4f0;p=thirdparty%2FPython%2Fcpython.git Fix trivial typo in pickle.rst (GH-4955) (#4958) (cherry picked from commit a8d25a16452f7ee8dfc350cd028b3ae172d28ada) --- diff --git a/Doc/library/pickle.rst b/Doc/library/pickle.rst index 6e8430fa8e66..d0c4cf937c8a 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()