From: Brett Cannon Date: Sun, 11 Feb 2007 19:44:41 +0000 (+0000) Subject: Check in changed Python-ast.c from a cosmetic change to Python.asdl (in X-Git-Tag: v2.6a1~2188 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d080d4b0470aa9d7cbcf44378f1d8c88c5460d09;p=python Check in changed Python-ast.c from a cosmetic change to Python.asdl (in r53731). --- diff --git a/Python/Python-ast.c b/Python/Python-ast.c index 7a0f52825c..a02303d53e 100644 --- a/Python/Python-ast.c +++ b/Python/Python-ast.c @@ -3048,7 +3048,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__", "43614") < 0) + if (PyModule_AddStringConstant(m, "__version__", "53731") < 0) return; if (PyDict_SetItemString(d, "mod", (PyObject*)mod_type) < 0) return; if (PyDict_SetItemString(d, "Module", (PyObject*)Module_type) < 0)