summaryrefslogtreecommitdiffstats
path: root/Lib/logging
diff options
context:
space:
mode:
authorVinay Sajip <vinay_sajip@yahoo.co.uk>2012-02-23 19:40:33 (GMT)
committerVinay Sajip <vinay_sajip@yahoo.co.uk>2012-02-23 19:40:33 (GMT)
commit16f6a29be8fe709c133f07150c1326451139faae (patch)
treede9e8a9c8b1ef49b596959164a22f06cafa24d32 /Lib/logging
parentd23845e2701c72bf064e508af2012a1a5d342dda (diff)
downloadcpython-16f6a29be8fe709c133f07150c1326451139faae.zip
cpython-16f6a29be8fe709c133f07150c1326451139faae.tar.gz
cpython-16f6a29be8fe709c133f07150c1326451139faae.tar.bz2
Updated comments.
Diffstat (limited to 'Lib/logging')
-rw-r--r--Lib/logging/__init__.py4
-rw-r--r--Lib/logging/handlers.py5
2 files changed, 4 insertions, 5 deletions
diff --git a/Lib/logging/__init__.py b/Lib/logging/__init__.py
index a14caab..4b23cb4 100644
--- a/Lib/logging/__init__.py
+++ b/Lib/logging/__init__.py
@@ -16,9 +16,9 @@
"""
Logging package for Python. Based on PEP 282 and comments thereto in
-comp.lang.python, and influenced by Apache's log4j system.
+comp.lang.python.
-Copyright (C) 2001-2010 Vinay Sajip. All Rights Reserved.
+Copyright (C) 2001-2012 Vinay Sajip. All Rights Reserved.
To use, simply 'import logging' and log away!
"""
diff --git a/Lib/logging/handlers.py b/Lib/logging/handlers.py
index 95543f9..fe5f9bf 100644
--- a/Lib/logging/handlers.py
+++ b/Lib/logging/handlers.py
@@ -16,10 +16,9 @@
"""
Additional handlers for the logging package for Python. The core package is
-based on PEP 282 and comments thereto in comp.lang.python, and influenced by
-Apache's log4j system.
+based on PEP 282 and comments thereto in comp.lang.python.
-Copyright (C) 2001-2010 Vinay Sajip. All Rights Reserved.
+Copyright (C) 2001-2012 Vinay Sajip. All Rights Reserved.
To use, simply 'import logging.handlers' and log away!
"""