[Python-checkins] r73422 - python/trunk/Python/Python-ast.c

benjamin.peterson python-checkins at python.org
Sat Jun 13 22:30:48 CEST 2009


Author: benjamin.peterson
Date: Sat Jun 13 22:30:48 2009
New Revision: 73422

Log:
update ast version

Modified:
   python/trunk/Python/Python-ast.c

Modified: python/trunk/Python/Python-ast.c
==============================================================================
--- python/trunk/Python/Python-ast.c	(original)
+++ python/trunk/Python/Python-ast.c	Sat Jun 13 22:30:48 2009
@@ -2,7 +2,7 @@
 
 
 /*
-   __version__ 62047.
+   __version__ 73421.
 
    This module must be committed separately after each AST grammar change;
    The __version__ number is set to the revision number of the commit
@@ -5944,7 +5944,7 @@
         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__", "62047") < 0)
+        if (PyModule_AddStringConstant(m, "__version__", "73421") < 0)
                 return;
         if (PyDict_SetItemString(d, "mod", (PyObject*)mod_type) < 0) return;
         if (PyDict_SetItemString(d, "Module", (PyObject*)Module_type) < 0)


More information about the Python-checkins mailing list