Remove versionadded/versionchanged in the reference.
diff --git a/Doc/reference/compound_stmts.rst b/Doc/reference/compound_stmts.rst
index 8aa4e02..045231b 100644
--- a/Doc/reference/compound_stmts.rst
+++ b/Doc/reference/compound_stmts.rst
@@ -211,6 +211,7 @@
 ============================
 
 .. index:: statement: try
+.. index:: keyword: except
 
 The :keyword:`try` statement specifies exception handlers and/or cleanup code
 for a group of statements:
@@ -224,13 +225,6 @@
    try2_stmt: "try" ":" `suite`
             : "finally" ":" `suite`
 
-.. versionchanged:: 2.5
-   In previous versions of Python, :keyword:`try`...\ :keyword:`except`...\
-   :keyword:`finally` did not work. :keyword:`try`...\ :keyword:`except` had to be
-   nested in :keyword:`try`...\ :keyword:`finally`.
-
-.. index:: keyword: except
-
 The :keyword:`except` clause(s) specify one or more exception handlers. When no
 exception occurs in the :keyword:`try` clause, no exception handler is executed.
 When an exception occurs in the :keyword:`try` suite, a search for an exception
@@ -317,8 +311,6 @@
 
 .. index:: statement: with
 
-.. versionadded:: 2.5
-
 The :keyword:`with` statement is used to wrap the execution of a block with
 methods defined by a context manager (see section :ref:`context-managers`). This
 allows common :keyword:`try`...\ :keyword:`except`...\ :keyword:`finally` usage