From 17ab9a02b53691d9968bcd1fa09560a9ffe3e514 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Mon, 28 Aug 2006 16:38:22 +0000 Subject: Fix set literals not being visited in symtable creation. --- 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 86f09edbff..b322039a48 100644 --- a/Python/Python-ast.c +++ b/Python/Python-ast.c @@ -3043,7 +3043,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__", "51600") < 0) + if (PyModule_AddStringConstant(m, "__version__", "51631") < 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