Kaydet (Commit) e4913c99 authored tarafından Martin v. Löwis's avatar Martin v. Löwis

Patch #624936: Implement __contains__.

üst d7bc0fec
......@@ -19,7 +19,7 @@ object):
# such key)
del d[key] # delete data stored at key (raises KeyError
# if no such key)
flag = d.has_key(key) # true if the key exists
flag = d.has_key(key) # true if the key exists; same as "key in d"
list = d.keys() # a list of all existing keys (slow!)
d.close() # close it
......@@ -61,6 +61,9 @@ class Shelf:
def has_key(self, key):
return self.dict.has_key(key)
def __contains__(self, key):
return self.dict.has_key(key)
def get(self, key, default=None):
if self.dict.has_key(key):
return self[key]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment