[Python-checkins] r85340 - python/branches/py3k/Lib/logging/__init__.py

vinay.sajip python-checkins at python.org
Sat Oct 9 13:24:34 CEST 2010


Author: vinay.sajip
Date: Sat Oct  9 13:24:34 2010
New Revision: 85340

Log:
Removed duplicated method.

Modified:
   python/branches/py3k/Lib/logging/__init__.py

Modified: python/branches/py3k/Lib/logging/__init__.py
==============================================================================
--- python/branches/py3k/Lib/logging/__init__.py	(original)
+++ python/branches/py3k/Lib/logging/__init__.py	Sat Oct  9 13:24:34 2010
@@ -1445,12 +1445,6 @@
         """
         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.


More information about the Python-checkins mailing list