summaryrefslogtreecommitdiffstats
path: root/Doc/library/ast.rst
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/library/ast.rst')
-rw-r--r--Doc/library/ast.rst8
1 files changed, 0 insertions, 8 deletions
diff --git a/Doc/library/ast.rst b/Doc/library/ast.rst
index b10b9cb..8590a48 100644
--- a/Doc/library/ast.rst
+++ b/Doc/library/ast.rst
@@ -9,12 +9,6 @@ Abstract Syntax Trees
.. sectionauthor:: Martin v. Löwis <martin@v.loewis.de>
.. sectionauthor:: Georg Brandl <georg@python.org>
-.. versionadded:: 2.5
- The low-level ``_ast`` module containing only the node classes.
-
-.. versionadded:: 2.6
- The high-level ``ast`` module containing all helpers.
-
The :mod:`ast` module helps Python applications to process trees of the Python
abstract syntax grammar. The abstract syntax itself might change with each
@@ -113,8 +107,6 @@ The abstract grammar is currently defined as follows:
:mod:`ast` Helpers
------------------
-.. versionadded:: 2.6
-
Apart from the node classes, :mod:`ast` module defines these utility functions
and classes for traversing abstract syntax trees: