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
ba8f5ff7
Kaydet (Commit)
ba8f5ff7
authored
Haz 14, 2003
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Copy builtin functions as atomic. Fixes #746304. Will backport to 2.2.
üst
c1aa8dce
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
2 deletions
+5
-2
copy.py
Lib/copy.py
+2
-0
test_copy.py
Lib/test/test_copy.py
+2
-2
NEWS
Misc/NEWS
+1
-0
No files found.
Lib/copy.py
Dosyayı görüntüle @
ba8f5ff7
...
...
@@ -120,6 +120,7 @@ except AttributeError:
d
[
types
.
TypeType
]
=
_copy_atomic
d
[
types
.
XRangeType
]
=
_copy_atomic
d
[
types
.
ClassType
]
=
_copy_atomic
d
[
types
.
BuiltinFunctionType
]
=
_copy_atomic
def
_copy_list
(
x
):
return
x
[:]
...
...
@@ -233,6 +234,7 @@ except AttributeError:
d
[
types
.
TypeType
]
=
_deepcopy_atomic
d
[
types
.
XRangeType
]
=
_deepcopy_atomic
d
[
types
.
ClassType
]
=
_deepcopy_atomic
d
[
types
.
BuiltinFunctionType
]
=
_deepcopy_atomic
def
_deepcopy_list
(
x
,
memo
):
y
=
[]
...
...
Lib/test/test_copy.py
Dosyayı görüntüle @
ba8f5ff7
...
...
@@ -84,7 +84,7 @@ class TestCopy(unittest.TestCase):
pass
tests
=
[
None
,
42
,
2L
**
100
,
3.14
,
True
,
False
,
1
j
,
"hello"
,
u"hello
\u1234
"
,
f
.
func_code
,
NewStyle
,
xrange
(
10
),
Classic
]
NewStyle
,
xrange
(
10
),
Classic
,
max
]
for
x
in
tests
:
self
.
assert_
(
copy
.
copy
(
x
)
is
x
,
`x`
)
...
...
@@ -257,7 +257,7 @@ class TestCopy(unittest.TestCase):
pass
tests
=
[
None
,
42
,
2L
**
100
,
3.14
,
True
,
False
,
1
j
,
"hello"
,
u"hello
\u1234
"
,
f
.
func_code
,
NewStyle
,
xrange
(
10
),
Classic
]
NewStyle
,
xrange
(
10
),
Classic
,
max
]
for
x
in
tests
:
self
.
assert_
(
copy
.
deepcopy
(
x
)
is
x
,
`x`
)
...
...
Misc/NEWS
Dosyayı görüntüle @
ba8f5ff7
...
...
@@ -83,6 +83,7 @@ Library
- copy.py: applied SF patch 707900, fixing bug 702858, by Steven
Taschuk. Copying a new-style class that had a reference to itself
didn'
t
work
.
(
The
same
thing
worked
fine
for
old
-
style
classes
.)
Builtin
functions
are
now
treated
as
atomic
,
fixing
bug
#
746304.
-
difflib
.
py
has
two
new
functions
:
context_diff
()
and
unified_diff
().
...
...
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