From ae7bbbba614bca6309ee991fa0d704ecd6d01352 Mon Sep 17 00:00:00 2001 From: Sebastian Pucilowski Date: Thu, 21 Dec 2017 13:31:10 +1100 Subject: [PATCH] Fix trivial typo in pickle.rst --- Doc/library/pickle.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/pickle.rst b/Doc/library/pickle.rst index 6e8430fa8e66f38..d0c4cf937c8ac57 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()