diff options
author | Sebastian Pucilowski <smopucilowski@users.noreply.github.com> | 2017-12-21 09:00:49 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2017-12-21 09:00:49 (GMT) |
commit | a8d25a16452f7ee8dfc350cd028b3ae172d28ada (patch) | |
tree | 3c79554d2ea9c67131e8a300071da4e7e677168a /Doc/library | |
parent | 09dc2f508c8513e0466a759cc27a09108c1e55c2 (diff) | |
download | cpython-a8d25a16452f7ee8dfc350cd028b3ae172d28ada.zip cpython-a8d25a16452f7ee8dfc350cd028b3ae172d28ada.tar.gz cpython-a8d25a16452f7ee8dfc350cd028b3ae172d28ada.tar.bz2 |
Fix trivial typo in pickle.rst (#4955)
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/pickle.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/pickle.rst b/Doc/library/pickle.rst index 6e8430f..d0c4cf9 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() |