diff options
author | Georg Brandl <georg@python.org> | 2008-07-23 15:16:45 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-07-23 15:16:45 (GMT) |
commit | f9efabb6d216791076bd386dd6c6e33055433910 (patch) | |
tree | b6d6ce9a6cacd64fd7dee841356b94fdf8c151f8 /Doc | |
parent | c6ad7940517217ef4b7c400bccdcc98bd8c32f43 (diff) | |
download | cpython-f9efabb6d216791076bd386dd6c6e33055433910.zip cpython-f9efabb6d216791076bd386dd6c6e33055433910.tar.gz cpython-f9efabb6d216791076bd386dd6c6e33055433910.tar.bz2 |
3k-warn about parser's "ast" aliases.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/parser.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Doc/library/parser.rst b/Doc/library/parser.rst index 7df9251..bdd541c 100644 --- a/Doc/library/parser.rst +++ b/Doc/library/parser.rst @@ -34,6 +34,7 @@ the code forming the application. It is also faster. replaced by "ast"; this is a legacy from the time when there was no other AST and has nothing to do with the AST found in Python 2.5. This is also the reason for the functions' keyword arguments being called *ast*, not *st*. + The "ast" functions will be removed in Python 3.0. There are a few things to note about this module which are important to making use of the data structures created. This is not a tutorial on editing the parse |