]> granicus.if.org Git - python/commitdiff
Fix trivial typo in pickle.rst (#4955)
authorSebastian Pucilowski <smopucilowski@users.noreply.github.com>
Thu, 21 Dec 2017 09:00:49 +0000 (20:00 +1100)
committerSerhiy Storchaka <storchaka@gmail.com>
Thu, 21 Dec 2017 09:00:49 +0000 (11:00 +0200)
Doc/library/pickle.rst

index 6e8430fa8e66f38ca8fd7cf1af9b0ba4a94fd0f4..d0c4cf937c8ac57c0d6a36c49c5d4d53d1b7eff9 100644 (file)
@@ -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()