[Python-checkins] python/dist/src/Lib/test/output test_grammar, 1.21, 1.22 test_profile, 1.5, 1.6

jhylton@users.sourceforge.net jhylton at users.sourceforge.net
Thu Oct 20 21:59:27 CEST 2005


Update of /cvsroot/python/python/dist/src/Lib/test/output
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2121/Lib/test/output

Modified Files:
	test_grammar test_profile 
Log Message:
Merge ast-branch to head

This change implements a new bytecode compiler, based on a
transformation of the parse tree to an abstract syntax defined in
Parser/Python.asdl.

The compiler implementation is not complete, but it is in stable
enough shape to run the entire test suite excepting two disabled
tests. 



Index: test_grammar
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/output/test_grammar,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -d -r1.21 -r1.22
--- test_grammar	31 Aug 2004 10:07:09 -0000	1.21
+++ test_grammar	20 Oct 2005 19:59:24 -0000	1.22
@@ -34,6 +34,7 @@
 continue + try/finally ok
 testing continue and break in try/except in loop
 return_stmt
+yield_stmt
 raise_stmt
 import_name
 import_from

Index: test_profile
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/output/test_profile,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- test_profile	12 Jul 2004 23:38:02 -0000	1.5
+++ test_profile	20 Oct 2005 19:59:24 -0000	1.6
@@ -7,7 +7,7 @@
        12    0.000    0.000    0.012    0.001 :0(hasattr)
         8    0.000    0.000    0.000    0.000 :0(range)
         1    0.000    0.000    0.000    0.000 :0(setprofile)
-        1    0.000    0.000    1.000    1.000 <string>:1(?)
+        1    0.000    0.000    1.000    1.000 <string>:1(<module>)
         0    0.000             0.000          profile:0(profiler)
         1    0.000    0.000    1.000    1.000 profile:0(testfunc())
         1    0.400    0.400    1.000    1.000 test_profile.py:23(testfunc)



More information about the Python-checkins mailing list