]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-45752: Fix no-support examples in 'copy' docs (GH-29548)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Sun, 14 Nov 2021 09:58:01 +0000 (01:58 -0800)
committerGitHub <noreply@github.com>
Sun, 14 Nov 2021 09:58:01 +0000 (01:58 -0800)
(cherry picked from commit b7360ae395e9e633d384d16064c5dc04a9841e19)

Co-authored-by: M. Mostafa Farzan <m2_farzan@yahoo.com>
Doc/library/copy.rst

index 0eb5a793ad953a23eafac57e2a6eb9d35899b016..ce50c331bec86515156153e384d17f6bd5a3c9d5 100644 (file)
@@ -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.