summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2016-07-01 09:33:00 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2016-07-01 09:33:00 (GMT)
commit8faca61fec8ef004feb534dee3da052f3bed82ce (patch)
tree6c2817679df60e8e789a65ec8291288070f86ad8
parente39682b0768bcf06d3c0d8480dd2f98824afafe6 (diff)
downloadcpython-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.
-rw-r--r--Doc/library/shelve.rst2
-rw-r--r--Lib/test/test_shelve.py4
2 files changed, 5 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.
diff --git a/Lib/test/test_shelve.py b/Lib/test/test_shelve.py
index bd51d86..b71af2b 100644
--- a/Lib/test/test_shelve.py
+++ b/Lib/test/test_shelve.py
@@ -162,6 +162,10 @@ class TestCase(unittest.TestCase):
else:
self.fail('Closed shelf should not find a key')
+ def test_default_protocol(self):
+ with shelve.Shelf({}) as s:
+ self.assertEqual(s._protocol, 3)
+
from test import mapping_tests
class TestShelveBase(mapping_tests.BasicTestMappingProtocol):