diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2016-07-01 09:33:00 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2016-07-01 09:33:00 (GMT) |
commit | 8faca61fec8ef004feb534dee3da052f3bed82ce (patch) | |
tree | 6c2817679df60e8e789a65ec8291288070f86ad8 /Doc | |
parent | e39682b0768bcf06d3c0d8480dd2f98824afafe6 (diff) | |
download | cpython-8faca61fec8ef004feb534dee3da052f3bed82ce.zip cpython-8faca61fec8ef004feb534dee3da052f3bed82ce.tar.gz cpython-8faca61fec8ef004feb534dee3da052f3bed82ce.tar.bz2 |
Issue #27431: Update default protocol version in shelve.Shelf() documentation
shelve.open() documentation was updated in f351fb7ea179.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/shelve.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/shelve.rst b/Doc/library/shelve.rst index 1ec158e..db66a63 100644 --- a/Doc/library/shelve.rst +++ b/Doc/library/shelve.rst @@ -108,7 +108,7 @@ Restrictions A subclass of :class:`collections.abc.MutableMapping` which stores pickled values in the *dict* object. - By default, version 0 pickles are used to serialize values. The version of the + By default, version 3 pickles are used to serialize values. The version of the pickle protocol can be specified with the *protocol* parameter. See the :mod:`pickle` documentation for a discussion of the pickle protocols. |