[Python-checkins] cpython: bump ast version

benjamin.peterson python-checkins at python.org
Fri May 27 21:00:43 CEST 2011


http://hg.python.org/cpython/rev/69d4938382c1
changeset:   70439:69d4938382c1
user:        Benjamin Peterson <benjamin at python.org>
date:        Fri May 27 14:01:01 2011 -0500
summary:
  bump ast version

files:
  Python/Python-ast.c |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Python/Python-ast.c b/Python/Python-ast.c
--- 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 @@
             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;

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list