[pypy-svn] r24410 - pypy/dist/pypy/jit

pedronis at codespeak.net pedronis at codespeak.net
Wed Mar 15 23:33:41 CET 2006


Author: pedronis
Date: Wed Mar 15 23:33:35 2006
New Revision: 24410

Modified:
   pypy/dist/pypy/jit/hintcontainer.py
Log:
xxx about virtual structure union and vparent



Modified: pypy/dist/pypy/jit/hintcontainer.py
==============================================================================
--- pypy/dist/pypy/jit/hintcontainer.py	(original)
+++ pypy/dist/pypy/jit/hintcontainer.py	Wed Mar 15 23:33:35 2006
@@ -99,6 +99,7 @@
         return self.fields == other.fields
 
     def union(self, other):
+        # xxx about vparent?
         assert self.T == other.T
         for name in self.names:
             self.fields[name].merge(other.fields[name])



More information about the Pypy-commit mailing list