summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2007-02-11 19:44:41 (GMT)
committerBrett Cannon <bcannon@gmail.com>2007-02-11 19:44:41 (GMT)
commitd080d4b0470aa9d7cbcf44378f1d8c88c5460d09 (patch)
tree0ae40f221ea81d5c4fe73821ad99fb2196722c37 /Python
parent691acf287900669c2540ab9664abcd266c2a6838 (diff)
downloadcpython-d080d4b0470aa9d7cbcf44378f1d8c88c5460d09.zip
cpython-d080d4b0470aa9d7cbcf44378f1d8c88c5460d09.tar.gz
cpython-d080d4b0470aa9d7cbcf44378f1d8c88c5460d09.tar.bz2
Check in changed Python-ast.c from a cosmetic change to Python.asdl (in
r53731).
Diffstat (limited to 'Python')
-rw-r--r--Python/Python-ast.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/Python-ast.c b/Python/Python-ast.c
index 7a0f528..a02303d 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)