Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
a2263b4c
Commit
a2263b4c
authored
Feb 09, 2012
by
Senthil Kumaran
Browse files
Options
Browse Files
Download
Plain Diff
merge from 3.2
Issue #9021 - Introduce copy module better in the docs.
parents
89d5a6f7
8dacf192
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
Doc/library/copy.rst
Doc/library/copy.rst
+5
-1
Misc/NEWS
Misc/NEWS
+2
-0
No files found.
Doc/library/copy.rst
View file @
a2263b4c
...
@@ -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
View file @
a2263b4c
...
@@ -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