[Python-checkins] [3.10] bpo-45752: Fix no-support examples in 'copy' docs (GH-29548) (GH-29556)

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


https://github.com/python/cpython/commit/2081f9fe75a3a990394fbccd0c1c91c229c6289e
commit: 2081f9fe75a3a990394fbccd0c1c91c229c6289e
branch: 3.10
author: M. Mostafa Farzan <m2_farzan at yahoo.com>
committer: miss-islington <31488909+miss-islington at users.noreply.github.com>
date: 2021-11-14T04:54:42-08:00
summary:

[3.10] bpo-45752: Fix no-support examples in 'copy' docs (GH-29548) (GH-29556)



(cherry picked from commit b7360ae395e9e633d384d16064c5dc04a9841e19)

Co-authored-by: M. Mostafa Farzan <m2_farzan at yahoo.com>

Automerge-Triggered-By: GH:asvetlov

files:
M Doc/library/copy.rst

diff --git a/Doc/library/copy.rst b/Doc/library/copy.rst
index 01ebf198d7c50..a8bc2fa55ea8c 100644
--- a/Doc/library/copy.rst
+++ b/Doc/library/copy.rst
@@ -60,7 +60,7 @@ The :func:`deepcopy` function avoids these problems by:
   components copied.
 
 This module does not copy types like module, method, stack trace, stack frame,
-file, socket, window, array, or any similar types.  It does "copy" functions and
+file, socket, window, or any similar types.  It does "copy" functions and
 classes (shallow and deeply), by returning the original object unchanged; this
 is compatible with the way these are treated by the :mod:`pickle` module.
 



More information about the Python-checkins mailing list