[pypy-svn] rev 1503 - pypy/trunk/src/pypy/translator

pedronis at codespeak.net pedronis at codespeak.net
Wed Oct 1 17:25:57 CEST 2003


Author: pedronis
Date: Wed Oct  1 17:25:57 2003
New Revision: 1503

Modified:
   pypy/trunk/src/pypy/translator/annotation.py
Log:
removed spurious stuff.


Modified: pypy/trunk/src/pypy/translator/annotation.py
==============================================================================
--- pypy/trunk/src/pypy/translator/annotation.py	(original)
+++ pypy/trunk/src/pypy/translator/annotation.py	Wed Oct  1 17:25:57 2003
@@ -14,11 +14,6 @@
 def set_type(var,type,annotations):
     ann = SpaceOperation("type",[var],Constant(type))
     annotations.append(ann)    
-    
-
-def annotate(flowgraph):
-    annotator = Annotator(flowgraph)
-    annotator.flowin()
 
 class Annotator:
 


More information about the Pypy-commit mailing list