diff options
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2015-01-06 10:56:09 (GMT) |
---|---|---|
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2015-01-06 10:56:09 (GMT) |
commit | 2fb1efe4f4e78be665d45b0ebde0553213362fff (patch) | |
tree | a83d4121691296afd1220c41b6f58f81deb53721 /Lib/logging | |
parent | 789b80570069143db8caab5339a56c65212336fe (diff) | |
download | cpython-2fb1efe4f4e78be665d45b0ebde0553213362fff.zip cpython-2fb1efe4f4e78be665d45b0ebde0553213362fff.tar.gz cpython-2fb1efe4f4e78be665d45b0ebde0553213362fff.tar.bz2 |
Closes #23151: Removed unnecessary initialization.
Diffstat (limited to 'Lib/logging')
-rw-r--r-- | Lib/logging/__init__.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/logging/__init__.py b/Lib/logging/__init__.py index 7628d84..37132d9 100644 --- a/Lib/logging/__init__.py +++ b/Lib/logging/__init__.py @@ -1086,7 +1086,6 @@ class PlaceHolder(object): # # Determine which class to use when instantiating loggers. # -_loggerClass = None def setLoggerClass(klass): """ @@ -1105,7 +1104,6 @@ def getLoggerClass(): """ Return the class to be used when instantiating a logger. """ - return _loggerClass class Manager(object): |