[Python-checkins] r53750 - peps/trunk/pep-0339.txt

brett.cannon python-checkins at python.org
Mon Feb 12 04:00:06 CET 2007


Author: brett.cannon
Date: Mon Feb 12 04:00:05 2007
New Revision: 53750

Modified:
   peps/trunk/pep-0339.txt
Log:
Mention how Python/Python-ast.c must be committed separately after every change
to the grammar as its __version__ value is set to the AST grammar's revision
number.


Modified: peps/trunk/pep-0339.txt
==============================================================================
--- peps/trunk/pep-0339.txt	(original)
+++ peps/trunk/pep-0339.txt	Mon Feb 12 04:00:05 2007
@@ -443,7 +443,9 @@
         Creates C structs corresponding to the ASDL types.  Also
 	contains code for marshaling AST nodes (core ASDL types have
 	marshaling code in asdl.c).  "File automatically generated by
-	Parser/asdl_c.py".
+	Parser/asdl_c.py".  This file must be committed separately
+        after every grammar change is committed since the __version__
+        value is set to the latest grammar change revision number.
 
     - asdl.c
         Contains code to handle the ASDL sequence type.  Also has code


More information about the Python-checkins mailing list