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

This commit is contained in:
M. Mostafa Farzan 2021-11-14 13:04:37 +03:30 committed by GitHub
parent 464e6616be
commit b7360ae395
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.