[Python-checkins] bpo-45752: Remove "array" from list of things that cannot be copied in `copy` module docstring (GH-29555)

miss-islington webhook-mailer at python.org
Sun Nov 14 07:56:05 EST 2021


https://github.com/python/cpython/commit/c2c4fdf5ea6e9cba4ef469d08a52abb9cfa756a5
commit: c2c4fdf5ea6e9cba4ef469d08a52abb9cfa756a5
branch: main
author: Alex Waygood <Alex.Waygood at Gmail.com>
committer: miss-islington <31488909+miss-islington at users.noreply.github.com>
date: 2021-11-14T04:56:01-08:00
summary:

bpo-45752: Remove "array" from list of things that cannot be copied in `copy` module docstring (GH-29555)



Automerge-Triggered-By: GH:asvetlov

files:
M Lib/copy.py

diff --git a/Lib/copy.py b/Lib/copy.py
index dd41c54dffe1d..69bac980be205 100644
--- a/Lib/copy.py
+++ b/Lib/copy.py
@@ -39,8 +39,8 @@ class instances).
     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__(),



More information about the Python-checkins mailing list