[pypy-svn] r60297 - pypy/trunk/pypy/rpython/lltypesystem

cfbolz at codespeak.net cfbolz at codespeak.net
Wed Dec 3 17:12:52 CET 2008


Author: cfbolz
Date: Wed Dec  3 17:12:52 2008
New Revision: 60297

Modified:
   pypy/trunk/pypy/rpython/lltypesystem/rlist.py
Log:
comment I had while reading resize


Modified: pypy/trunk/pypy/rpython/lltypesystem/rlist.py
==============================================================================
--- pypy/trunk/pypy/rpython/lltypesystem/rlist.py	(original)
+++ pypy/trunk/pypy/rpython/lltypesystem/rlist.py	Wed Dec  3 17:12:52 2008
@@ -201,6 +201,7 @@
     if newsize <= 0:
         ll_assert(newsize == 0, "negative list length")
         new_allocated = 0
+        # XXX why not use _ll_prebuilt_empty_array here?
     else:
         if newsize < 9:
             some = 3



More information about the Pypy-commit mailing list