Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Doc/library/copy.rst
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@ The :func:`deepcopy` function avoids these problems by:
* letting user-defined classes override the copying operation or the set of
components copied.

This module does not copy types like module, method, stack trace, stack frame,
file, socket, window, or any similar types. It does "copy" functions and
classes (shallow and deeply), by returning the original object unchanged; this
This module does not copy types like immutable object, module, method, stack trace,
stack frame, 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.

Shallow copies of dictionaries can be made using :meth:`dict.copy`, and
Expand Down
Loading