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
5c1c3b4f
Kaydet (Commit)
5c1c3b4f
authored
Ara 01, 2013
tarafından
Alexandre Vassalotti
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #11480: Fixed copy.copy to work with classes with custom metaclasses.
Patch by Daniel Urban.
üst
361e30c1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
1 deletion
+15
-1
copy.py
Lib/copy.py
+8
-0
test_copy.py
Lib/test/test_copy.py
+4
-1
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/copy.py
Dosyayı görüntüle @
5c1c3b4f
...
...
@@ -76,6 +76,14 @@ def copy(x):
if
copier
:
return
copier
(
x
)
try
:
issc
=
issubclass
(
cls
,
type
)
except
TypeError
:
# cls is not a class
issc
=
False
if
issc
:
# treat it as a regular class:
return
_copy_immutable
(
x
)
copier
=
getattr
(
cls
,
"__copy__"
,
None
)
if
copier
:
return
copier
(
x
)
...
...
Lib/test/test_copy.py
Dosyayı görüntüle @
5c1c3b4f
...
...
@@ -3,6 +3,7 @@
import
copy
import
copyreg
import
weakref
import
abc
from
operator
import
le
,
lt
,
ge
,
gt
,
eq
,
ne
import
unittest
...
...
@@ -93,9 +94,11 @@ class TestCopy(unittest.TestCase):
pass
def
f
():
pass
class
WithMetaclass
(
metaclass
=
abc
.
ABCMeta
):
pass
tests
=
[
None
,
42
,
2
**
100
,
3.14
,
True
,
False
,
1
j
,
"hello"
,
"hello
\u1234
"
,
f
.
__code__
,
NewStyle
,
range
(
10
),
Classic
,
max
]
NewStyle
,
range
(
10
),
Classic
,
max
,
WithMetaclass
]
for
x
in
tests
:
self
.
assertIs
(
copy
.
copy
(
x
),
x
)
...
...
Misc/NEWS
Dosyayı görüntüle @
5c1c3b4f
...
...
@@ -24,6 +24,9 @@ Library
- Fixed _pickle.Unpickler to not fail when loading empty strings as
persistent IDs.
- Issue #11480: Fixed copy.copy to work with classes with custom metaclasses.
Patch by Daniel Urban.
- Issue #6477: Added support for pickling the types of built-in singletons
(i.e., Ellipsis, NotImplemented, None).
...
...
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