[Python-3000-checkins] r45615 - python/branches/p3yk/Python/Python-ast.c

thomas.wouters python-3000-checkins at python.org
Fri Apr 21 16:02:59 CEST 2006


Author: thomas.wouters
Date: Fri Apr 21 16:02:59 2006
New Revision: 45615

Modified:
   python/branches/p3yk/Python/Python-ast.c
Log:

Commit regenerated Python-ast.c.



Modified: python/branches/p3yk/Python/Python-ast.c
==============================================================================
--- python/branches/p3yk/Python/Python-ast.c	(original)
+++ python/branches/p3yk/Python/Python-ast.c	Fri Apr 21 16:02:59 2006
@@ -3048,7 +3048,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__", "42753") < 0)
+        if (PyModule_AddStringConstant(m, "__version__", "45597") < 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-3000-checkins mailing list