]> granicus.if.org Git - python/commitdiff
fix versionchanged
authorBenjamin Peterson <benjamin@python.org>
Mon, 28 Jun 2010 00:16:12 +0000 (00:16 +0000)
committerBenjamin Peterson <benjamin@python.org>
Mon, 28 Jun 2010 00:16:12 +0000 (00:16 +0000)
Doc/library/logging.rst
Doc/library/warnings.rst

index 1a5d7eb2961092356cba236c6b9965b727d4ce18..9df4794be19a5204503d33a3ebe09192169165fe 100644 (file)
@@ -440,9 +440,9 @@ import mechanisms. Thus, you could use either `handlers.WatchedFileHandler`
 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
index ede991d15ab41f0ba32884d508cbdddaa363ea4e..25e5db368905b2bba73f565671aefbebbadf3d45 100644 (file)
@@ -91,7 +91,7 @@ User code can define additional warning categories by subclassing one of the
 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.