diff options
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2006-05-18 07:28:58 (GMT) |
---|---|---|
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2006-05-18 07:28:58 (GMT) |
commit | 9e9c2528a4f0e573590e930f1d1466085a415c4b (patch) | |
tree | 7e1e836375cda2dbc72ab6ebd8f739dad145d6cc /Lib/logging | |
parent | 007a382a4db14d471d71a709501439531221c01f (diff) | |
download | cpython-9e9c2528a4f0e573590e930f1d1466085a415c4b.zip cpython-9e9c2528a4f0e573590e930f1d1466085a415c4b.tar.gz cpython-9e9c2528a4f0e573590e930f1d1466085a415c4b.tar.bz2 |
Changed status from "beta" to "production"; since logging has been part of the stdlib since 2.3, it should be safe to make this assertion ;-)
Diffstat (limited to 'Lib/logging')
-rw-r--r-- | Lib/logging/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/logging/__init__.py b/Lib/logging/__init__.py index 582b781..e8852f3 100644 --- a/Lib/logging/__init__.py +++ b/Lib/logging/__init__.py @@ -40,7 +40,7 @@ except ImportError: thread = None __author__ = "Vinay Sajip <vinay_sajip@red-dove.com>" -__status__ = "beta" +__status__ = "production" __version__ = "0.4.9.9" __date__ = "06 February 2006" |