diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-06-22 19:49:47 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-06-22 19:49:47 (GMT) |
commit | 5b9ce31c395a74e2d0fb13c03b87f0eaf1cc3611 (patch) | |
tree | e33efc830c38acc0f1796980b4eaf2f6a14da44f | |
parent | c009735b509c0b259359d923e5514b66e0636380 (diff) | |
download | cpython-5b9ce31c395a74e2d0fb13c03b87f0eaf1cc3611.zip cpython-5b9ce31c395a74e2d0fb13c03b87f0eaf1cc3611.tar.gz cpython-5b9ce31c395a74e2d0fb13c03b87f0eaf1cc3611.tar.bz2 |
bump revision
-rw-r--r-- | Python/Python-ast.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/Python-ast.c b/Python/Python-ast.c index 9a93bf3..701ac48 100644 --- a/Python/Python-ast.c +++ b/Python/Python-ast.c @@ -2,7 +2,7 @@ /* - __version__ 77422. + __version__ 82160. This module must be committed separately after each AST grammar change; The __version__ number is set to the revision number of the commit @@ -6570,7 +6570,7 @@ init_ast(void) if (PyDict_SetItemString(d, "AST", (PyObject*)&AST_type) < 0) return; if (PyModule_AddIntConstant(m, "PyCF_ONLY_AST", PyCF_ONLY_AST) < 0) return; - if (PyModule_AddStringConstant(m, "__version__", "77422") < 0) + if (PyModule_AddStringConstant(m, "__version__", "82160") < 0) return; if (PyDict_SetItemString(d, "mod", (PyObject*)mod_type) < 0) return; if (PyDict_SetItemString(d, "Module", (PyObject*)Module_type) < 0) |