summaryrefslogtreecommitdiffstats
path: root/Doc/library/ast.rst
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-08-16 02:59:55 (GMT)
committerBenjamin Peterson <benjamin@python.org>2008-08-16 02:59:55 (GMT)
commit9abf93d6c96991167cc6acf50f025410ea1def2f (patch)
tree2d4cd67df1cc6f47d5244a771753ced49f63a4a6 /Doc/library/ast.rst
parent24c4d85598d9f191350ae8a345c310a1a5c75214 (diff)
downloadcpython-9abf93d6c96991167cc6acf50f025410ea1def2f.zip
cpython-9abf93d6c96991167cc6acf50f025410ea1def2f.tar.gz
cpython-9abf93d6c96991167cc6acf50f025410ea1def2f.tar.bz2
murder some versionadded and versionchanged directives in their beds
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: