summaryrefslogtreecommitdiffstats
path: root/Doc/library/pickle.rst
diff options
context:
space:
mode:
authorAlexandre Vassalotti <alexandre@peadrop.com>2009-01-23 04:50:05 (GMT)
committerAlexandre Vassalotti <alexandre@peadrop.com>2009-01-23 04:50:05 (GMT)
commitf7d08c7d546354c271046a8a70f6bd4bf1fccac2 (patch)
treec67c3f9ac9696ae8e26f5b1b262c98014d8693f3 /Doc/library/pickle.rst
parent4a72a196b8cb81e7ae6d50637c8923a4e59b21ca (diff)
downloadcpython-f7d08c7d546354c271046a8a70f6bd4bf1fccac2.zip
cpython-f7d08c7d546354c271046a8a70f6bd4bf1fccac2.tar.gz
cpython-f7d08c7d546354c271046a8a70f6bd4bf1fccac2.tar.bz2
Issue 2980: Protocol 0 is not truly restricted to ASCII.
Diffstat (limited to 'Doc/library/pickle.rst')
-rw-r--r--Doc/library/pickle.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/pickle.rst b/Doc/library/pickle.rst
index 08b7daa..a1e045d 100644
--- a/Doc/library/pickle.rst
+++ b/Doc/library/pickle.rst
@@ -98,8 +98,8 @@ generated by :mod:`pickle`.
There are currently 4 different protocols which can be used for pickling.
-* Protocol version 0 is the original ASCII protocol and is backwards compatible
- with earlier versions of Python.
+* Protocol version 0 is the original human-readable protocol and is
+ backwards compatible with earlier versions of Python.
* Protocol version 1 is the old binary format which is also compatible with
earlier versions of Python.