Check in changed Python-ast.c from a cosmetic change to Python.asdl (in

r53731).
This commit is contained in:
Brett Cannon 2007-02-11 19:44:41 +00:00
parent 691acf2879
commit d080d4b047
1 changed files with 1 additions and 1 deletions

View File

@ -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)