diff options
author | Raymond Hettinger <python@rcn.com> | 2005-06-13 01:10:15 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2005-06-13 01:10:15 (GMT) |
commit | f9d88ab39ec9009e5ec989885533e542079d2426 (patch) | |
tree | 01fc0cab8fc793c3a0be5feb1a5a010857e75e7a /Lib | |
parent | ca7329c9c124080b817ceb67b4e3ee7963b81d41 (diff) | |
download | cpython-f9d88ab39ec9009e5ec989885533e542079d2426.zip cpython-f9d88ab39ec9009e5ec989885533e542079d2426.tar.gz cpython-f9d88ab39ec9009e5ec989885533e542079d2426.tar.bz2 |
SF bug #1219361 Fix typo
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/copy.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/copy.py b/Lib/copy.py index dbfe2f5..b3419ca 100644 --- a/Lib/copy.py +++ b/Lib/copy.py @@ -14,7 +14,7 @@ compound objects (objects that contain other objects, like lists or class instances). - A shallow copy constructs a new compound object and then (to the - extent possible) inserts *the same objects* into in that the + extent possible) inserts *the same objects* into it that the original contains. - A deep copy constructs a new compound object and then, recursively, |