diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-10-20 21:43:57 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-10-20 21:43:57 (GMT) |
commit | 5294bb5d0557b8b87515ff850bab778496590523 (patch) | |
tree | fb3858ff7d67c2d9f4c61f64b79f9e1551eaf82b /Lib/ast.py | |
parent | 3f3ccbe33e1dfb0b38ed17aa9dca1cfacdc1eea0 (diff) | |
download | cpython-5294bb5d0557b8b87515ff850bab778496590523.zip cpython-5294bb5d0557b8b87515ff850bab778496590523.tar.gz cpython-5294bb5d0557b8b87515ff850bab778496590523.tar.bz2 |
Merged revisions 66984 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r66984 | armin.ronacher | 2008-10-20 16:29:08 -0500 (Mon, 20 Oct 2008) | 3 lines
Fixed #4062, added import for _ast.__version__ to ast to match the documented behavior.
........
Diffstat (limited to 'Lib/ast.py')
-rw-r--r-- | Lib/ast.py | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -26,6 +26,7 @@ :license: Python License. """ from _ast import * +from _ast import __version__ def parse(expr, filename='<unknown>', mode='exec'): |