diff options
author | Georg Brandl <georg@python.org> | 2008-01-05 20:00:55 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-01-05 20:00:55 (GMT) |
commit | d348b2587e01f76a30c07bfa248653bb6b60142f (patch) | |
tree | ea021bed326b54dbfa1de7765ea9ab36d9e74653 /Lib/logging | |
parent | 84df79b2499a051ee2ca09c38db6b4af1d49e14a (diff) | |
download | cpython-d348b2587e01f76a30c07bfa248653bb6b60142f.zip cpython-d348b2587e01f76a30c07bfa248653bb6b60142f.tar.gz cpython-d348b2587e01f76a30c07bfa248653bb6b60142f.tar.bz2 |
Remove several mentions of old Python versions that don't apply anymore.
Diffstat (limited to 'Lib/logging')
-rw-r--r-- | Lib/logging/__init__.py | 3 | ||||
-rw-r--r-- | Lib/logging/config.py | 3 | ||||
-rw-r--r-- | Lib/logging/handlers.py | 3 |
3 files changed, 0 insertions, 9 deletions
diff --git a/Lib/logging/__init__.py b/Lib/logging/__init__.py index 3b85123..04e05b9 100644 --- a/Lib/logging/__init__.py +++ b/Lib/logging/__init__.py @@ -18,9 +18,6 @@ Logging package for Python. Based on PEP 282 and comments thereto in comp.lang.python, and influenced by Apache's log4j system. -Should work under Python versions >= 1.5.2, except that source line -information is not available unless 'sys._getframe()' is. - Copyright (C) 2001-2007 Vinay Sajip. All Rights Reserved. To use, simply 'import logging' and log away! diff --git a/Lib/logging/config.py b/Lib/logging/config.py index e5b8bb1..fd6caaa 100644 --- a/Lib/logging/config.py +++ b/Lib/logging/config.py @@ -19,9 +19,6 @@ Configuration functions 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. -Should work under Python versions >= 1.5.2, except that source line -information is not available unless 'sys._getframe()' is. - Copyright (C) 2001-2007 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 2062809..b53262e 100644 --- a/Lib/logging/handlers.py +++ b/Lib/logging/handlers.py @@ -19,9 +19,6 @@ 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. -Should work under Python versions >= 1.5.2, except that source line -information is not available unless 'sys._getframe()' is. - Copyright (C) 2001-2007 Vinay Sajip. All Rights Reserved. To use, simply 'import logging' and log away! |