diff options
author | M. Mostafa Farzan <m2_farzan@yahoo.com> | 2021-11-14 09:34:37 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-14 09:34:37 (GMT) |
commit | b7360ae395e9e633d384d16064c5dc04a9841e19 (patch) | |
tree | f5218fd4d6f607838c8388bb08f1f0e1c3e47117 /Doc | |
parent | 464e6616be86129e33af6d9e43540c260d6804d5 (diff) | |
download | cpython-b7360ae395e9e633d384d16064c5dc04a9841e19.zip cpython-b7360ae395e9e633d384d16064c5dc04a9841e19.tar.gz cpython-b7360ae395e9e633d384d16064c5dc04a9841e19.tar.bz2 |
bpo-45752: Fix no-support examples in 'copy' docs (GH-29548)
Diffstat (limited to 'Doc')
-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 01ebf19..a8bc2fa 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. |