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

martin.v.loewis python-checkins at python.org
Tue Feb 28 01:32:31 CET 2006


Author: martin.v.loewis
Date: Tue Feb 28 01:32:31 2006
New Revision: 42639

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	Tue Feb 28 01:32:31 2006
@@ -2948,6 +2948,8 @@
         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__", "42635") < 0)
+                return;
         if(PyDict_SetItemString(d, "mod", (PyObject*)mod_type) < 0) return;
         if(PyDict_SetItemString(d, "Module", (PyObject*)Module_type) < 0)
            return;


More information about the Python-checkins mailing list