From: Vinay Sajip Date: Sat, 9 Oct 2010 11:24:34 +0000 (+0000) Subject: Removed duplicated method. X-Git-Tag: v3.2a3~9 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8382d0fe2e86e56b3c206524d712851b8973c918;p=thirdparty%2FPython%2Fcpython.git Removed duplicated method. --- diff --git a/Lib/logging/__init__.py b/Lib/logging/__init__.py index 4d9590b92295..112286ba5214 100644 --- a/Lib/logging/__init__.py +++ b/Lib/logging/__init__.py @@ -1445,12 +1445,6 @@ class LoggerAdapter(object): """ self.logger.setLevel(level) - def isEnabledFor(self, level): - """ - See if the underlying logger is enabled for the specified level. - """ - return self.logger.isEnabledFor(level) - def getEffectiveLevel(self): """ Get the effective level for the underlying logger.