diff options
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2004-02-28 16:07:46 (GMT) |
---|---|---|
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2004-02-28 16:07:46 (GMT) |
commit | 3f74284e1baef338b34ed9a17a7b46e9607ccd5d (patch) | |
tree | a1a3fadc95d6fa0d747bdc37df15ee98f2ab4051 /Lib/logging/__init__.py | |
parent | fb0521f15377056ce57beedcbd9d20dc651d1017 (diff) | |
download | cpython-3f74284e1baef338b34ed9a17a7b46e9607ccd5d.zip cpython-3f74284e1baef338b34ed9a17a7b46e9607ccd5d.tar.gz cpython-3f74284e1baef338b34ed9a17a7b46e9607ccd5d.tar.bz2 |
Minor documentation changes
Diffstat (limited to 'Lib/logging/__init__.py')
-rw-r--r-- | Lib/logging/__init__.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/logging/__init__.py b/Lib/logging/__init__.py index 5636c70..75946e0 100644 --- a/Lib/logging/__init__.py +++ b/Lib/logging/__init__.py @@ -36,8 +36,8 @@ except ImportError: __author__ = "Vinay Sajip <vinay_sajip@red-dove.com>" __status__ = "beta" -__version__ = "0.4.9.1" -__date__ = "21 February 2004" +__version__ = "0.4.9.2" +__date__ = "28 February 2004" #--------------------------------------------------------------------------- # Miscellaneous module data @@ -723,8 +723,8 @@ class FileHandler(StreamHandler): class PlaceHolder: """ PlaceHolder instances are used in the Manager logger hierarchy to take - the place of nodes for which no loggers have been defined [FIXME add - example]. + the place of nodes for which no loggers have been defined. This class is + intended for internal use only and not as part of the public API. """ def __init__(self, alogger): """ |