diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2007-01-06 13:29:14 +0000 |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2007-01-06 13:29:14 +0000 |
commit | 5d8d41514d074699af1c5df098b87a9c1f457421 (patch) | |
tree | bc86bdd53a82fbcc98c963b8bf5d990900fe9990 /Python/Python-ast.c | |
parent | a061a1c38ddb1385ab0ab8d5d373a37a32833a83 (diff) | |
download | cpython-5d8d41514d074699af1c5df098b87a9c1f457421.tar.gz |
Commit __version__ change.
Diffstat (limited to 'Python/Python-ast.c')
-rw-r--r-- | Python/Python-ast.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/Python-ast.c b/Python/Python-ast.c index 4cf686f51c..a210c7f20f 100644 --- a/Python/Python-ast.c +++ b/Python/Python-ast.c @@ -3126,7 +3126,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__", "52491") < 0) + if (PyModule_AddStringConstant(m, "__version__", "53170") < 0) return; if (PyDict_SetItemString(d, "mod", (PyObject*)mod_type) < 0) return; if (PyDict_SetItemString(d, "Module", (PyObject*)Module_type) < 0) |