[Python-checkins] python/dist/src/Python ast.c,1.1.2.63,1.1.2.64

nascheme@users.sourceforge.net nascheme at users.sourceforge.net
Wed Aug 31 01:37:56 CEST 2005


Update of /cvsroot/python/python/dist/src/Python
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24681

Modified Files:
      Tag: ast-branch
	ast.c 
Log Message:
Add a high-level comment to ast.c module.


Index: ast.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/Attic/ast.c,v
retrieving revision 1.1.2.63
retrieving revision 1.1.2.64
diff -u -d -r1.1.2.63 -r1.1.2.64
--- ast.c	2 Jun 2005 05:34:35 -0000	1.1.2.63
+++ ast.c	30 Aug 2005 23:37:45 -0000	1.1.2.64
@@ -1,3 +1,8 @@
+/*
+ * This file includes functions to transform a concrete syntax tree (CST) to
+ * an abstract syntax tree (AST).  The main function is PyAST_FromNode().
+ *
+ */
 #include "Python.h"
 #include "Python-ast.h"
 #include "grammar.h"



More information about the Python-checkins mailing list