diff options
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. # |