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
f0f9679d
Kaydet (Commit)
f0f9679d
authored
Şub 09, 2012
tarafından
Senthil Kumaran
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
merge from 3.2
Issue #9021 - Introduce copy module better in the docs.
üst
0bfa963f
5b14d732
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
copy.rst
Doc/library/copy.rst
+5
-1
NEWS
Misc/NEWS
+2
-0
No files found.
Doc/library/copy.rst
Dosyayı görüntüle @
f0f9679d
...
@@ -4,7 +4,11 @@
...
@@ -4,7 +4,11 @@
.. module:: copy
.. module:: copy
:synopsis: Shallow and deep copy operations.
:synopsis: Shallow and deep copy operations.
This module provides generic (shallow and deep) copying operations.
Assignment statements in Python do not copy objects, they create bindings
between a target and an object. For collections that are mutable or contain
mutable items, a copy is sometimes needed so one can change one copy without
changing the other. This module provides generic shallow and deep copy
operations (explained below).
Interface summary:
Interface summary:
...
...
Misc/NEWS
Dosyayı görüntüle @
f0f9679d
...
@@ -484,6 +484,8 @@ Library
...
@@ -484,6 +484,8 @@ Library
make sure two listeners can'
t
bind
to
the
same
socket
/
pipe
(
or
any
existing
make sure two listeners can'
t
bind
to
the
same
socket
/
pipe
(
or
any
existing
socket
/
pipe
).
socket
/
pipe
).
-
Issue
#
9021
:
Add
an
introduction
to
the
copy
module
documentation
.
-
Issue
#
6005
:
Examples
in
the
socket
library
documentation
use
sendall
,
where
-
Issue
#
6005
:
Examples
in
the
socket
library
documentation
use
sendall
,
where
relevant
,
instead
send
method
.
relevant
,
instead
send
method
.
...
...
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