Retry ubuntu tests

This commit is contained in:
Bar Harel 2020-01-31 01:47:44 +02:00
parent 0b68385b13
commit 26ea94a0d4
1 changed files with 2 additions and 2 deletions

View File

@ -973,8 +973,8 @@ class UserDict(_collections_abc.MutableMapping):
def __iter__(self):
return iter(self.data)
# Modify __contains__ and get() to work correctly
# when __missing__ is present
# Modify __contains__ and get() to work like dict
# does when __missing__ is present.
def __contains__(self, key):
return key in self.data