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

(cherry picked from commit b7360ae395)

Co-authored-by: M. Mostafa Farzan <m2_farzan@yahoo.com>
This commit is contained in:
Miss Islington (bot) 2021-11-14 01:58:01 -08:00 committed by GitHub
parent 142fcb40b6
commit 6073920fcd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View 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.