diff options
author | Raymond Hettinger <python@rcn.com> | 2002-06-01 14:18:47 +0000 |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2002-06-01 14:18:47 +0000 |
commit | 54f0222547b1e92cd018ef132307a6f793dc9505 (patch) | |
tree | 667480d89feb3f9c7ca44e4ffa7bf39e725c120d /Lib/copy.py | |
parent | 9d5e4aa4149edb92f6d28c9390d776ae4a1d719a (diff) | |
download | cpython-git-54f0222547b1e92cd018ef132307a6f793dc9505.tar.gz |
SF 563203. Replaced 'has_key()' with 'in'.
Diffstat (limited to 'Lib/copy.py')
-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 cf0b1af367..21be6bc3b4 100644 --- a/Lib/copy.py +++ b/Lib/copy.py @@ -158,7 +158,7 @@ def deepcopy(x, memo = None): if memo is None: memo = {} d = id(x) - if memo.has_key(d): + if d in memo: return memo[d] try: copierfunction = _deepcopy_dispatch[type(x)] |