Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
cf8b42e9
Kaydet (Commit)
cf8b42e9
authored
Tem 01, 2016
tarafından
Berker Peksag
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Issue #27431: Merge from 3.5
üst
a9e1ebb7
8faca61f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
shelve.rst
Doc/library/shelve.rst
+1
-1
test_shelve.py
Lib/test/test_shelve.py
+4
-0
No files found.
Doc/library/shelve.rst
Dosyayı görüntüle @
cf8b42e9
...
@@ -108,7 +108,7 @@ Restrictions
...
@@ -108,7 +108,7 @@ Restrictions
A subclass of :class:`collections.abc.MutableMapping` which stores pickled
A subclass of :class:`collections.abc.MutableMapping` which stores pickled
values in the *dict* object.
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
pickle protocol can be specified with the *protocol* parameter. See the
:mod:`pickle` documentation for a discussion of the pickle protocols.
:mod:`pickle` documentation for a discussion of the pickle protocols.
...
...
Lib/test/test_shelve.py
Dosyayı görüntüle @
cf8b42e9
...
@@ -162,6 +162,10 @@ class TestCase(unittest.TestCase):
...
@@ -162,6 +162,10 @@ class TestCase(unittest.TestCase):
else
:
else
:
self
.
fail
(
'Closed shelf should not find a key'
)
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
from
test
import
mapping_tests
class
TestShelveBase
(
mapping_tests
.
BasicTestMappingProtocol
):
class
TestShelveBase
(
mapping_tests
.
BasicTestMappingProtocol
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment