From e2b70bcf7401477936fba99a8bf4a1f759ecc8a3 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 18 Aug 2006 22:13:04 +0000 Subject: Get rid of dict.has_key(). Boy this has a lot of repercussions! Not all code has been fixed yet; this is just a checkpoint... The C API still has PyDict_HasKey() and _HasKeyString(); not sure if I want to change those just yet. --- Lib/weakref.py | 14 -------------- 1 file changed, 14 deletions(-) (limited to 'Lib/weakref.py') diff --git a/Lib/weakref.py b/Lib/weakref.py index 4f6d757fe3b..44cf9a7c1a1 100644 --- a/Lib/weakref.py +++ b/Lib/weakref.py @@ -64,13 +64,6 @@ class WeakValueDictionary(UserDict.UserDict): return False return o is not None - def has_key(self, key): - try: - o = self.data[key]() - except KeyError: - return False - return o is not None - def __repr__(self): return "" % id(self) @@ -259,13 +252,6 @@ class WeakKeyDictionary(UserDict.UserDict): def get(self, key, default=None): return self.data.get(ref(key),default) - def has_key(self, key): - try: - wr = ref(key) - except TypeError: - return 0 - return wr in self.data - def __contains__(self, key): try: wr = ref(key) -- cgit v1.2.3