diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2006-02-28 00:12:47 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2006-02-28 00:12:47 (GMT) |
commit | eae93b763cf84ef4fa44357190c7fdca3b8695fc (patch) | |
tree | c4be51df1b1dd568847f5802c6628935b195b9e2 /Parser/Python.asdl | |
parent | a7446e3438194e8abdfe75c2667b03a219e22a0b (diff) | |
download | cpython-eae93b763cf84ef4fa44357190c7fdca3b8695fc.zip cpython-eae93b763cf84ef4fa44357190c7fdca3b8695fc.tar.gz cpython-eae93b763cf84ef4fa44357190c7fdca3b8695fc.tar.bz2 |
Add support for version field on Modules
Diffstat (limited to 'Parser/Python.asdl')
-rw-r--r-- | Parser/Python.asdl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Parser/Python.asdl b/Parser/Python.asdl index ba4459e..11c9665 100644 --- a/Parser/Python.asdl +++ b/Parser/Python.asdl @@ -1,6 +1,6 @@ -- ASDL's five builtin types are identifier, int, string, object, bool -module Python +module Python version "$Revision$" { mod = Module(stmt* body) | Interactive(stmt* body) |