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

martin.v.loewis python-checkins at python.org
Fri Apr 7 08:26:32 CEST 2006


Author: martin.v.loewis
Date: Fri Apr  7 08:26:31 2006
New Revision: 43718

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


Modified: python/trunk/Python/Python-ast.c
==============================================================================
--- python/trunk/Python/Python-ast.c	(original)
+++ python/trunk/Python/Python-ast.c	Fri Apr  7 08:26:31 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__", "") < 0)
+        if (PyModule_AddStringConstant(m, "__version__", "43614") < 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