diff --git a/Lib/copy.py b/Lib/copy.py index fff7e93c2a1b89..adc395957b7a80 100644 --- a/Lib/copy.py +++ b/Lib/copy.py @@ -43,10 +43,10 @@ class instances). nor stack trace, stack frame, nor file, socket, window, nor any similar types. -Classes can use the same interfaces to control copying that they use -to control pickling: they can define methods called __getinitargs__(), -__getstate__() and __setstate__(). See the documentation for module -"pickle" for information on these methods. +Classes can use the same interfaces to control copying as they do for +pickling. To control pickling, they may implement the methods +__getstate__() and __setstate__(). See the documentation for the +"pickle" module for information on these methods. """ import types