summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2011-05-27 19:01:01 (GMT)
committerBenjamin Peterson <benjamin@python.org>2011-05-27 19:01:01 (GMT)
commit7f670e5dad6837d1684a0228eeb6449dea5fe713 (patch)
tree13582a45fd8bf6d689243d2a04705e80b78a655a /Python
parentbf1bbc145299964a37cfae5bc5565177192f68ad (diff)
downloadcpython-7f670e5dad6837d1684a0228eeb6449dea5fe713.zip
cpython-7f670e5dad6837d1684a0228eeb6449dea5fe713.tar.gz
cpython-7f670e5dad6837d1684a0228eeb6449dea5fe713.tar.bz2
bump ast version
Diffstat (limited to 'Python')
-rw-r--r--Python/Python-ast.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/Python-ast.c b/Python/Python-ast.c
index 2364db3..f076c7e 100644
--- a/Python/Python-ast.c
+++ b/Python/Python-ast.c
@@ -2,7 +2,7 @@
/*
- __version__ 0daa6ba25d9b.
+ __version__ 9b11cc4e2918.
This module must be committed separately after each AST grammar change;
The __version__ number is set to the revision number of the commit
@@ -6818,7 +6818,7 @@ PyInit__ast(void)
NULL;
if (PyModule_AddIntConstant(m, "PyCF_ONLY_AST", PyCF_ONLY_AST) < 0)
return NULL;
- if (PyModule_AddStringConstant(m, "__version__", "0daa6ba25d9b") < 0)
+ if (PyModule_AddStringConstant(m, "__version__", "9b11cc4e2918") < 0)
return NULL;
if (PyDict_SetItemString(d, "mod", (PyObject*)mod_type) < 0) return
NULL;