From: Benjamin Peterson Date: Fri, 27 May 2011 19:01:01 +0000 (-0500) Subject: bump ast version X-Git-Tag: v3.3.0a1~2183^2~75 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7f670e5dad6837d1684a0228eeb6449dea5fe713;p=thirdparty%2FPython%2Fcpython.git bump ast version --- diff --git a/Python/Python-ast.c b/Python/Python-ast.c index 2364db30710c..f076c7e9645b 100644 --- a/Python/Python-ast.c +++ b/Python/Python-ast.c @@ -2,7 +2,7 @@ /* - __version__ 0daa6ba25d9b. + __version__ 9b11cc4e2918. This module must be committed separately after each AST grammar change; The __version__ number is set to the revision number of the commit @@ -6818,7 +6818,7 @@ PyInit__ast(void) NULL; if (PyModule_AddIntConstant(m, "PyCF_ONLY_AST", PyCF_ONLY_AST) < 0) return NULL; - if (PyModule_AddStringConstant(m, "__version__", "0daa6ba25d9b") < 0) + if (PyModule_AddStringConstant(m, "__version__", "9b11cc4e2918") < 0) return NULL; if (PyDict_SetItemString(d, "mod", (PyObject*)mod_type) < 0) return NULL;