summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Waygood <Alex.Waygood@Gmail.com>2021-11-14 12:56:01 (GMT)
committerGitHub <noreply@github.com>2021-11-14 12:56:01 (GMT)
commitc2c4fdf5ea6e9cba4ef469d08a52abb9cfa756a5 (patch)
tree6773b8002e6648ca323c76d90299de203b0de476
parentb7360ae395e9e633d384d16064c5dc04a9841e19 (diff)
downloadcpython-c2c4fdf5ea6e9cba4ef469d08a52abb9cfa756a5.zip
cpython-c2c4fdf5ea6e9cba4ef469d08a52abb9cfa756a5.tar.gz
cpython-c2c4fdf5ea6e9cba4ef469d08a52abb9cfa756a5.tar.bz2
bpo-45752: Remove "array" from list of things that cannot be copied in `copy` module docstring (GH-29555)
Automerge-Triggered-By: GH:asvetlov
-rw-r--r--Lib/copy.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/copy.py b/Lib/copy.py
index dd41c54..69bac98 100644
--- a/Lib/copy.py
+++ b/Lib/copy.py
@@ -39,8 +39,8 @@ Python's deep copy operation avoids these problems by:
set of components copied
This version does not copy types like module, class, function, method,
-nor stack trace, stack frame, nor file, socket, window, nor array, nor
-any similar types.
+nor stack trace, stack frame, nor file, socket, window, nor any
+similar types.
Classes can use the same interfaces to control copying that they use
to control pickling: they can define methods called __getinitargs__(),