From a3bd4b68f5b3c14f9b292963a9845ba2a789d4c8 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Sat, 26 Aug 2006 20:49:04 +0000 Subject: Part of SF patch #1513870 (the still relevant part) -- add reduce() to functools, and adjust docs etc. --- 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 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) -- cgit v1.2.1