summaryrefslogtreecommitdiffstats
path: root/Lib/logging
diff options
context:
space:
mode:
authorVinay Sajip <vinay_sajip@yahoo.co.uk>2011-03-29 16:20:34 (GMT)
committerVinay Sajip <vinay_sajip@yahoo.co.uk>2011-03-29 16:20:34 (GMT)
commite6c1eb92675f67d1907bd7ba00c44262c18e93d4 (patch)
tree9347d7cbb12c5977ad9812f68bb6e48d0aa72b17 /Lib/logging
parent86cc82e36f24e3c57bd08a49190d798afb5e6b19 (diff)
downloadcpython-e6c1eb92675f67d1907bd7ba00c44262c18e93d4.zip
cpython-e6c1eb92675f67d1907bd7ba00c44262c18e93d4.tar.gz
cpython-e6c1eb92675f67d1907bd7ba00c44262c18e93d4.tar.bz2
Closes issue #11557: Added Natalia Bidart's patch to improve test coverage.
Diffstat (limited to 'Lib/logging')
-rw-r--r--Lib/logging/__init__.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/logging/__init__.py b/Lib/logging/__init__.py
index e4b34a1..7757a82 100644
--- a/Lib/logging/__init__.py
+++ b/Lib/logging/__init__.py
@@ -1,4 +1,4 @@
-# Copyright 2001-2010 by Vinay Sajip. All Rights Reserved.
+# Copyright 2001-2011 by Vinay Sajip. All Rights Reserved.
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose and without fee is hereby granted,
@@ -18,7 +18,7 @@
Logging package for Python. Based on PEP 282 and comments thereto in
comp.lang.python, and influenced by Apache's log4j system.
-Copyright (C) 2001-2010 Vinay Sajip. All Rights Reserved.
+Copyright (C) 2001-2011 Vinay Sajip. All Rights Reserved.
To use, simply 'import logging' and log away!
"""
@@ -1826,10 +1826,10 @@ class NullHandler(Handler):
package.
"""
def handle(self, record):
- pass
+ """Stub."""
def emit(self, record):
- pass
+ """Stub."""
def createLock(self):
self.lock = None