[pypy-svn] r21611 - pypy/dist/pypy/annotation

pedronis at codespeak.net pedronis at codespeak.net
Sat Dec 31 15:01:32 CET 2005


Author: pedronis
Date: Sat Dec 31 15:01:30 2005
New Revision: 21611

Modified:
   pypy/dist/pypy/annotation/builtin.py
Log:
XXX GC behavior of int<->object



Modified: pypy/dist/pypy/annotation/builtin.py
==============================================================================
--- pypy/dist/pypy/annotation/builtin.py	(original)
+++ pypy/dist/pypy/annotation/builtin.py	Sat Dec 31 15:01:30 2005
@@ -251,10 +251,10 @@
 def rarith_intmask(s_obj):
     return SomeInteger()
 
-def robjmodel_cast_obj_to_int(s_instance):
+def robjmodel_cast_obj_to_int(s_instance): # XXX GC behavior
     return SomeInteger()
 
-def robjmodel_cast_int_to_obj(s_int, s_clspbc):
+def robjmodel_cast_int_to_obj(s_int, s_clspbc): # XXX GC behavior
     assert len(s_clspbc.descriptions) == 1
     desc = s_clspbc.descriptions.keys()[0]
     cdef = desc.getuniqueclassdef()



More information about the Pypy-commit mailing list