[Python-checkins] r68870 - python/branches/py3k/Doc/library/pickle.rst

alexandre.vassalotti python-checkins at python.org
Fri Jan 23 05:50:05 CET 2009


Author: alexandre.vassalotti
Date: Fri Jan 23 05:50:05 2009
New Revision: 68870

Log:
Issue 2980: Protocol 0 is not truly restricted to ASCII.


Modified:
   python/branches/py3k/Doc/library/pickle.rst

Modified: python/branches/py3k/Doc/library/pickle.rst
==============================================================================
--- python/branches/py3k/Doc/library/pickle.rst	(original)
+++ python/branches/py3k/Doc/library/pickle.rst	Fri Jan 23 05:50:05 2009
@@ -98,8 +98,8 @@
 
 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.


More information about the Python-checkins mailing list