diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2003-04-23 03:49:43 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2003-04-23 03:49:43 (GMT) |
commit | f297bd1937f1fb73c7f734f6410e294da8dad12d (patch) | |
tree | 53149003e72a734ca9856f633e5c06895a89a981 /Lib/logging/__init__.py | |
parent | 11b230696081e5c91153229616732a707dc9f94d (diff) | |
download | cpython-f297bd1937f1fb73c7f734f6410e294da8dad12d.zip cpython-f297bd1937f1fb73c7f734f6410e294da8dad12d.tar.gz cpython-f297bd1937f1fb73c7f734f6410e294da8dad12d.tar.bz2 |
SF patch #725904, Minor changes to logging from module author (Vinay Sajip)
- upgrade to version 0.4.8
Diffstat (limited to 'Lib/logging/__init__.py')
-rw-r--r-- | Lib/logging/__init__.py | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/Lib/logging/__init__.py b/Lib/logging/__init__.py index 12a40b0..1967ba3 100644 --- a/Lib/logging/__init__.py +++ b/Lib/logging/__init__.py @@ -35,22 +35,15 @@ except ImportError: thread = None __author__ = "Vinay Sajip <vinay_sajip@red-dove.com>" -__status__ = "alpha" +__status__ = "beta" __version__ = "0.4.8" -__date__ = "16 February 2003" +__date__ = "22 April 2003" #--------------------------------------------------------------------------- # Miscellaneous module data #--------------------------------------------------------------------------- # -# _verinfo is used for when behaviour needs to be adjusted to the version -# of Python -# - -_verinfo = getattr(sys, "version_info", None) - -# #_srcfile is used when walking the stack to check when we've got the first # caller stack frame. # |