]> granicus.if.org Git - python/commitdiff
Prevent regeneration.
authorThomas Wouters <thomas@python.org>
Fri, 23 Feb 2007 20:11:29 +0000 (20:11 +0000)
committerThomas Wouters <thomas@python.org>
Fri, 23 Feb 2007 20:11:29 +0000 (20:11 +0000)
Include/Python-ast.h
Python/Python-ast.c

index 66d7b52580ea6e569dee9f5b4d8729b799c34d8e..a702dbc2fb249fdde2a6fedd1955589d575ff126 100644 (file)
@@ -516,3 +516,4 @@ keyword_ty _Py_keyword(identifier arg, expr_ty value, PyArena *arena);
 alias_ty _Py_alias(identifier name, identifier asname, PyArena *arena);
 
 PyObject* PyAST_mod2obj(mod_ty t);
+
index 390ba157e831865c59ff8793561bd7a64193d898..57d3c5babe882164722f5bc13daa69a1fcfb4a43 100644 (file)
@@ -2,7 +2,7 @@
 
 
 /*
-   __version__ 53866.
+   __version__ 53872.
 
    This module must be committed separately after each AST grammar change;
    The __version__ number is set to the revision number of the commit
@@ -3125,7 +3125,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__", "53866") < 0)
+        if (PyModule_AddStringConstant(m, "__version__", "53872") < 0)
                 return;
         if (PyDict_SetItemString(d, "mod", (PyObject*)mod_type) < 0) return;
         if (PyDict_SetItemString(d, "Module", (PyObject*)Module_type) < 0)