diff options
author | aodag <aodag@localhost> | 2015-05-02 05:51:49 +0900 |
---|---|---|
committer | aodag <aodag@localhost> | 2015-05-02 05:51:49 +0900 |
commit | 280aaa026a93d9fe9a4e039b9d2b686838e21733 (patch) | |
tree | 62920f6a4c1f08723dd4a438efd86ebf43719ee7 /paste/util/classinstance.py | |
parent | 02ffd7d23f28dde5ca94b098421479ffe1ecfdb7 (diff) | |
download | paste-git-fix-has_key.tar.gz |
replace ``has_key`` method to ``in`` operator #9fix-has_key
Diffstat (limited to 'paste/util/classinstance.py')
-rw-r--r-- | paste/util/classinstance.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/paste/util/classinstance.py b/paste/util/classinstance.py index ac2be3e..6436a44 100644 --- a/paste/util/classinstance.py +++ b/paste/util/classinstance.py @@ -24,7 +24,7 @@ class _methodwrapper(object): self.type = type def __call__(self, *args, **kw): - assert not kw.has_key('self') and not kw.has_key('cls'), ( + assert 'self' not in kw and 'cls' not in kw, ( "You cannot use 'self' or 'cls' arguments to a " "classinstancemethod") return self.func(*((self.obj, self.type) + args), **kw) |