diff options
author | Guido van Rossum <guido@python.org> | 2007-05-22 18:28:08 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2007-05-22 18:28:08 +0000 |
commit | 229f8a6ee98bf5e25d5240db82051cbc3afecc59 (patch) | |
tree | 921978cd89ca61b5a9746e313f935186202faac6 /Python/Python-ast.c | |
parent | 1695477c760c4e3d1e07552de1104f6f26d3d3d2 (diff) | |
download | cpython-229f8a6ee98bf5e25d5240db82051cbc3afecc59.tar.gz |
obcheckin.
Diffstat (limited to 'Python/Python-ast.c')
-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 fefa5c9806..791b32d3fb 100644 --- a/Python/Python-ast.c +++ b/Python/Python-ast.c @@ -2,7 +2,7 @@ /* - __version__ 55430. + __version__ 55514. This module must be committed separately after each AST grammar change; The __version__ number is set to the revision number of the commit @@ -3124,7 +3124,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__", "55430") < 0) + if (PyModule_AddStringConstant(m, "__version__", "55514") < 0) return; if (PyDict_SetItemString(d, "mod", (PyObject*)mod_type) < 0) return; if (PyDict_SetItemString(d, "Module", (PyObject*)Module_type) < 0) |