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
90e05b0e
Kaydet (Commit)
90e05b0e
authored
Şub 06, 2003
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Support __reduce__ returning a 4-tuple or 5-tuple.
üst
93cf58b0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
56 additions
and
1 deletion
+56
-1
copy.py
Lib/copy.py
+20
-1
test_copy.py
Lib/test/test_copy.py
+36
-0
No files found.
Lib/copy.py
Dosyayı görüntüle @
90e05b0e
...
...
@@ -297,15 +297,34 @@ def _reconstruct(x, info, deep, memo=None):
if
memo
is
None
:
memo
=
{}
n
=
len
(
info
)
assert
n
in
(
2
,
3
)
assert
n
in
(
2
,
3
,
4
,
5
)
callable
,
args
=
info
[:
2
]
if
n
>
2
:
state
=
info
[
2
]
else
:
state
=
{}
if
n
>
3
:
listiter
=
info
[
3
]
else
:
listiter
=
None
if
n
>
4
:
dictiter
=
info
[
4
]
else
:
dictiter
=
None
if
deep
:
args
=
deepcopy
(
args
,
memo
)
y
=
callable
(
*
args
)
if
listiter
is
not
None
:
for
item
in
listiter
:
if
deep
:
item
=
deepcopy
(
item
,
memo
)
y
.
append
(
item
)
if
dictiter
is
not
None
:
for
key
,
value
in
dictiter
:
if
deep
:
key
=
deepcopy
(
key
,
memo
)
value
=
deepcopy
(
value
,
memo
)
y
[
key
]
=
value
if
state
:
if
deep
:
state
=
deepcopy
(
state
,
memo
)
...
...
Lib/test/test_copy.py
Dosyayı görüntüle @
90e05b0e
...
...
@@ -375,6 +375,42 @@ class TestCopy(unittest.TestCase):
self
.
assertEqual
(
y
,
x
)
self
.
assert_
(
y
.
foo
is
not
x
.
foo
)
# Additions for Python 2.3 and pickle protocol 2
def
test_reduce_4tuple
(
self
):
class
C
(
list
):
def
__reduce__
(
self
):
return
(
C
,
(),
self
.
__dict__
,
iter
(
self
))
def
__cmp__
(
self
,
other
):
return
(
cmp
(
list
(
self
),
list
(
other
))
or
cmp
(
self
.
__dict__
,
other
.
__dict__
))
x
=
C
([[
1
,
2
],
3
])
y
=
copy
.
copy
(
x
)
self
.
assertEqual
(
x
,
y
)
self
.
assert_
(
x
is
not
y
)
self
.
assert_
(
x
[
0
]
is
y
[
0
])
y
=
copy
.
deepcopy
(
x
)
self
.
assertEqual
(
x
,
y
)
self
.
assert_
(
x
is
not
y
)
self
.
assert_
(
x
[
0
]
is
not
y
[
0
])
def
test_reduce_5tuple
(
self
):
class
C
(
dict
):
def
__reduce__
(
self
):
return
(
C
,
(),
self
.
__dict__
,
None
,
self
.
iteritems
())
def
__cmp__
(
self
,
other
):
return
(
cmp
(
dict
(
self
),
list
(
dict
))
or
cmp
(
self
.
__dict__
,
other
.
__dict__
))
x
=
C
([(
"foo"
,
[
1
,
2
]),
(
"bar"
,
3
)])
y
=
copy
.
copy
(
x
)
self
.
assertEqual
(
x
,
y
)
self
.
assert_
(
x
is
not
y
)
self
.
assert_
(
x
[
"foo"
]
is
y
[
"foo"
])
y
=
copy
.
deepcopy
(
x
)
self
.
assertEqual
(
x
,
y
)
self
.
assert_
(
x
is
not
y
)
self
.
assert_
(
x
[
"foo"
]
is
not
y
[
"foo"
])
def
test_main
():
suite
=
unittest
.
TestSuite
()
suite
.
addTest
(
unittest
.
makeSuite
(
TestCopy
))
...
...
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