[pypy-svn] r64978 - pypy/branch/pyjitpl5/pypy/annotation

antocuni at codespeak.net antocuni at codespeak.net
Sat May 2 17:48:39 CEST 2009


Author: antocuni
Date: Sat May  2 17:48:38 2009
New Revision: 64978

Modified:
   pypy/branch/pyjitpl5/pypy/annotation/model.py
Log:
merge part of r54324 from oo-jit/


Modified: pypy/branch/pyjitpl5/pypy/annotation/model.py
==============================================================================
--- pypy/branch/pyjitpl5/pypy/annotation/model.py	(original)
+++ pypy/branch/pyjitpl5/pypy/annotation/model.py	Sat May  2 17:48:38 2009
@@ -624,6 +624,8 @@
             return SomeOOStaticMeth(T)
         elif T == ootype.Class:
             return SomeOOClass(ootype.ROOT)
+        elif T == ootype.Object:
+            return SomeOOObject()
         elif isinstance(T, ExternalType):
             return SomeExternalInstance(T._class_)
         elif isinstance(T, lltype.InteriorPtr):



More information about the Pypy-commit mailing list