From d080d4b0470aa9d7cbcf44378f1d8c88c5460d09 Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Sun, 11 Feb 2007 19:44:41 +0000 Subject: Check in changed Python-ast.c from a cosmetic change to Python.asdl (in r53731). --- Python/Python-ast.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Python/Python-ast.c') 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) -- cgit v1.2.1