[Python-checkins] python/dist/src/Python newcompile.c, 1.1.2.72, 1.1.2.73

jhylton at users.sourceforge.net jhylton at users.sourceforge.net
Sat Feb 14 23:19:31 EST 2004


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

Modified Files:
      Tag: ast-branch
	newcompile.c 
Log Message:
Add comment from Tim about basic blocks representation.


Index: newcompile.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/Attic/newcompile.c,v
retrieving revision 1.1.2.72
retrieving revision 1.1.2.73
diff -C2 -d -r1.1.2.72 -r1.1.2.73
*** newcompile.c	15 Feb 2004 04:18:13 -0000	1.1.2.72
--- newcompile.c	15 Feb 2004 04:19:28 -0000	1.1.2.73
***************
*** 45,48 ****
--- 45,55 ----
                                      of function `PyParser_SimpleParseString'
       #: compile.h::b_return is only set, never used
+ 
+     ISSUES:
+ 
+      Tim mentioned that it's more common for a basic blocks representation
+      to use real pointers for jump targets rather than indexes into an
+      array of basic blocks.
+     
  */
  




More information about the Python-checkins mailing list