diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-11-14 09:58:01 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-14 09:58:01 (GMT) |
commit | 6073920fcdb5a36d20a6a7c6ee204f74f00e1cb4 (patch) | |
tree | f5488c2e93cc4e148d3d669e1980f5101b3280fc | |
parent | 142fcb40b6e460fa9b4a89fe9846b1ce4176354e (diff) | |
download | cpython-6073920fcdb5a36d20a6a7c6ee204f74f00e1cb4.zip cpython-6073920fcdb5a36d20a6a7c6ee204f74f00e1cb4.tar.gz cpython-6073920fcdb5a36d20a6a7c6ee204f74f00e1cb4.tar.bz2 |
bpo-45752: Fix no-support examples in 'copy' docs (GH-29548)
(cherry picked from commit b7360ae395e9e633d384d16064c5dc04a9841e19)
Co-authored-by: M. Mostafa Farzan <m2_farzan@yahoo.com>
-rw-r--r-- | Doc/library/copy.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/copy.rst b/Doc/library/copy.rst index 0eb5a79..ce50c33 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. |