summaryrefslogtreecommitdiffstats
path: root/Lib/ast.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2011-07-16 02:10:13 (GMT)
committerBenjamin Peterson <benjamin@python.org>2011-07-16 02:10:13 (GMT)
commit0bd152cd67fef5c238ed15ba2ce09f6a74e8d334 (patch)
treec1db691553896d0c95fbd39055b330e6a79a6861 /Lib/ast.py
parente720725c12e37a1081e2f493b67254096f6d5aa3 (diff)
downloadcpython-0bd152cd67fef5c238ed15ba2ce09f6a74e8d334.zip
cpython-0bd152cd67fef5c238ed15ba2ce09f6a74e8d334.tar.gz
cpython-0bd152cd67fef5c238ed15ba2ce09f6a74e8d334.tar.bz2
remove ast.__version__ (closes #12273)
Diffstat (limited to 'Lib/ast.py')
-rw-r--r--Lib/ast.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/ast.py b/Lib/ast.py
index fb5adac..13f59f9 100644
--- a/Lib/ast.py
+++ b/Lib/ast.py
@@ -25,7 +25,6 @@
:license: Python License.
"""
from _ast import *
-from _ast import __version__
def parse(source, filename='<unknown>', mode='exec'):