diff options
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2010-09-13 20:28:57 (GMT) |
---|---|---|
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2010-09-13 20:28:57 (GMT) |
commit | 9907918174976aa5514bd6f035b214949722d386 (patch) | |
tree | 255c1f8335eb55d006f6b33d95030d66572ac9ac /Lib | |
parent | 63891ed0821a90e163b8a604ce55f1762fae4c1f (diff) | |
download | cpython-9907918174976aa5514bd6f035b214949722d386.zip cpython-9907918174976aa5514bd6f035b214949722d386.tar.gz cpython-9907918174976aa5514bd6f035b214949722d386.tar.bz2 |
Removed unused, commented-out code.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/logging/__init__.py | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/Lib/logging/__init__.py b/Lib/logging/__init__.py index 0e01356..6332f2f 100644 --- a/Lib/logging/__init__.py +++ b/Lib/logging/__init__.py @@ -1498,15 +1498,6 @@ def getLogger(name=None): else: return root -#def getRootLogger(): -# """ -# Return the root logger. -# -# Note that getLogger('') now does the same thing, so this function is -# deprecated and may disappear in the future. -# """ -# return root - def critical(msg, *args, **kwargs): """ Log a message with severity 'CRITICAL' on the root logger. |