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
3ee6dabf
Kaydet (Commit)
3ee6dabf
authored
May 21, 2013
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #17900: Allowed pickling of recursive OrderedDicts. Decreased pickled
size and pickling time.
üst
b10c71da
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
6 deletions
+15
-6
__init__.py
Lib/collections/__init__.py
+1
-4
test_collections.py
Lib/test/test_collections.py
+11
-2
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/collections/__init__.py
Dosyayı görüntüle @
3ee6dabf
...
...
@@ -199,13 +199,10 @@ class OrderedDict(dict):
def
__reduce__
(
self
):
'Return state information for pickling'
items
=
[[
k
,
self
[
k
]]
for
k
in
self
]
inst_dict
=
vars
(
self
)
.
copy
()
for
k
in
vars
(
OrderedDict
()):
inst_dict
.
pop
(
k
,
None
)
if
inst_dict
:
return
(
self
.
__class__
,
(
items
,),
inst_dict
)
return
self
.
__class__
,
(
items
,)
return
self
.
__class__
,
(),
inst_dict
or
None
,
None
,
iter
(
self
.
items
())
def
copy
(
self
):
'od.copy() -> a shallow copy of od'
...
...
Lib/test/test_collections.py
Dosyayı görüntüle @
3ee6dabf
...
...
@@ -1245,9 +1245,18 @@ class TestOrderedDict(unittest.TestCase):
# do not save instance dictionary if not needed
pairs
=
[(
'c'
,
1
),
(
'b'
,
2
),
(
'a'
,
3
),
(
'd'
,
4
),
(
'e'
,
5
),
(
'f'
,
6
)]
od
=
OrderedDict
(
pairs
)
self
.
assert
Equal
(
len
(
od
.
__reduce__
()),
2
)
self
.
assert
IsNone
(
od
.
__reduce__
()[
2
]
)
od
.
x
=
10
self
.
assertEqual
(
len
(
od
.
__reduce__
()),
3
)
self
.
assertIsNotNone
(
od
.
__reduce__
()[
2
])
def
test_pickle_recursive
(
self
):
od
=
OrderedDict
()
od
[
1
]
=
od
for
proto
in
range
(
-
1
,
pickle
.
HIGHEST_PROTOCOL
+
1
):
dup
=
pickle
.
loads
(
pickle
.
dumps
(
od
,
proto
))
self
.
assertIsNot
(
dup
,
od
)
self
.
assertEqual
(
list
(
dup
.
keys
()),
[
1
])
self
.
assertIs
(
dup
[
1
],
dup
)
def
test_repr
(
self
):
od
=
OrderedDict
([(
'c'
,
1
),
(
'b'
,
2
),
(
'a'
,
3
),
(
'd'
,
4
),
(
'e'
,
5
),
(
'f'
,
6
)])
...
...
Misc/NEWS
Dosyayı görüntüle @
3ee6dabf
...
...
@@ -99,6 +99,9 @@ Core and Builtins
Library
-------
- Issue #17900: Allowed pickling of recursive OrderedDicts. Decreased pickled
size and pickling time.
- Issue #17914: Add os.cpu_count(). Patch by Yogesh Chaudhari, based on an
initial patch by Trent Nelson.
...
...
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