diff options
author | Guido van Rossum <guido@python.org> | 2006-08-26 20:49:04 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2006-08-26 20:49:04 +0000 |
commit | a3bd4b68f5b3c14f9b292963a9845ba2a789d4c8 (patch) | |
tree | 2b9d5760f2dffeb5a5a3ff5c23d753574be2e8db /Python/Python-ast.c | |
parent | c0719f329f62fd4ac96de65b07d1ed20e78b0d24 (diff) | |
download | cpython-a3bd4b68f5b3c14f9b292963a9845ba2a789d4c8.tar.gz |
Part of SF patch #1513870 (the still relevant part) -- add reduce() to
functools, and adjust docs etc.
Diffstat (limited to 'Python/Python-ast.c')
-rw-r--r-- | Python/Python-ast.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/Python-ast.c b/Python/Python-ast.c index 11f42b894c..68523e4904 100644 --- a/Python/Python-ast.c +++ b/Python/Python-ast.c @@ -3012,7 +3012,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__", "45597") < 0) + if (PyModule_AddStringConstant(m, "__version__", "51600") < 0) return; if (PyDict_SetItemString(d, "mod", (PyObject*)mod_type) < 0) return; if (PyDict_SetItemString(d, "Module", (PyObject*)Module_type) < 0) |