summaryrefslogtreecommitdiffstats
path: root/Python/Python-ast.c
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2006-04-07 06:26:31 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2006-04-07 06:26:31 (GMT)
commitad7c44c0475a030386b5c81585c6d973b5d60351 (patch)
treea8256488dfc35e98478d1593bd996cb6172b36ce /Python/Python-ast.c
parent7846f4d365c4d1564b4fe46ec8728f7473536ff7 (diff)
downloadcpython-ad7c44c0475a030386b5c81585c6d973b5d60351.zip
cpython-ad7c44c0475a030386b5c81585c6d973b5d60351.tar.gz
cpython-ad7c44c0475a030386b5c81585c6d973b5d60351.tar.bz2
Regenerate.
Diffstat (limited to 'Python/Python-ast.c')
-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 8b9400b..792f81d 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__", "") < 0)
+ if (PyModule_AddStringConstant(m, "__version__", "43614") < 0)
return;
if (PyDict_SetItemString(d, "mod", (PyObject*)mod_type) < 0) return;
if (PyDict_SetItemString(d, "Module", (PyObject*)Module_type) < 0)