diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-12-14 01:46:11 +0000 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-12-14 01:46:11 +0000 |
commit | 3e16f3dd7f9219a19e5802b721b19fde93fc56a5 (patch) | |
tree | e382283bd97483c71916409568f7dc1a0ae63abb | |
parent | 74af3bbfbdb925b5af5ec26f75cbc56698331d62 (diff) | |
download | cpython-git-3e16f3dd7f9219a19e5802b721b19fde93fc56a5.tar.gz |
remove has_key usage
-rw-r--r-- | Lib/logging/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/logging/__init__.py b/Lib/logging/__init__.py index bd1a49d626..513d4dce41 100644 --- a/Lib/logging/__init__.py +++ b/Lib/logging/__init__.py @@ -846,7 +846,7 @@ class PlaceHolder: Add the specified logger as a child of this placeholder. """ #if alogger not in self.loggers: - if not self.loggerMap.has_key(alogger): + if alogger not in self.loggerMap: #self.loggers.append(alogger) self.loggerMap[alogger] = None |