]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-45752: Remove "array" from list of things that cannot be copied in `copy` module...
authorAlex Waygood <Alex.Waygood@Gmail.com>
Sun, 14 Nov 2021 12:56:01 +0000 (12:56 +0000)
committerGitHub <noreply@github.com>
Sun, 14 Nov 2021 12:56:01 +0000 (04:56 -0800)
Automerge-Triggered-By: GH:asvetlov
Lib/copy.py

index dd41c54dffe1d71f40a68f9a5aad39af38d94f6c..69bac980be2054ca7c4e25697a4d5aeffd0134f1 100644 (file)
@@ -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__(),