[Python-checkins] r82315 - in python/branches/py3k/Doc/library: logging.rst warnings.rst

benjamin.peterson python-checkins at python.org
Mon Jun 28 02:16:12 CEST 2010


Author: benjamin.peterson
Date: Mon Jun 28 02:16:12 2010
New Revision: 82315

Log:
fix versionchanged

Modified:
   python/branches/py3k/Doc/library/logging.rst
   python/branches/py3k/Doc/library/warnings.rst

Modified: python/branches/py3k/Doc/library/logging.rst
==============================================================================
--- python/branches/py3k/Doc/library/logging.rst	(original)
+++ python/branches/py3k/Doc/library/logging.rst	Mon Jun 28 02:16:12 2010
@@ -440,9 +440,9 @@
 class defined in package `mypackage` and module `mymodule`, where `mypackage`
 is available on the Python import path).
 
-.. versionchanged:: 2.7
+.. versionchanged:: 3.2
 
-In Python 2.7, a new means of configuring logging has been introduced, using
+In Python 3.2, a new means of configuring logging has been introduced, using
 dictionaries to hold configuration information. This provides a superset of the
 functionality of the config-file-based approach outlined above, and is the
 recommended configuration method for new applications and deployments. Because

Modified: python/branches/py3k/Doc/library/warnings.rst
==============================================================================
--- python/branches/py3k/Doc/library/warnings.rst	(original)
+++ python/branches/py3k/Doc/library/warnings.rst	Mon Jun 28 02:16:12 2010
@@ -91,7 +91,7 @@
 standard warning categories.  A warning category must always be a subclass of
 the :exc:`Warning` class.
 
-.. versionchanged:: 2.7
+.. versionchanged:: 3.2
    :exc:`DeprecationWarning` is ignored by default.
 
 


More information about the Python-checkins mailing list