diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2007-01-06 13:29:14 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2007-01-06 13:29:14 (GMT) |
commit | 37ffcf7baee0e078eec9bee0efdc623429ad2310 (patch) | |
tree | cc986012e0ab09b2cb275b215494cbd1cdaeeb67 | |
parent | 34e4f52fea47567f51a9ce952b57ea29d6f64f3f (diff) | |
download | cpython-37ffcf7baee0e078eec9bee0efdc623429ad2310.zip cpython-37ffcf7baee0e078eec9bee0efdc623429ad2310.tar.gz cpython-37ffcf7baee0e078eec9bee0efdc623429ad2310.tar.bz2 |
Commit __version__ change.
-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 4cf686f..a210c7f 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) |