[pypy-svn] r48008 - pypy/dist/pypy/lang/smalltalk

akuhn at codespeak.net akuhn at codespeak.net
Fri Oct 26 00:38:31 CEST 2007


Author: akuhn
Date: Fri Oct 26 00:38:30 2007
New Revision: 48008

Modified:
   pypy/dist/pypy/lang/smalltalk/primitives.py
Log:
just added one comment

Modified: pypy/dist/pypy/lang/smalltalk/primitives.py
==============================================================================
--- pypy/dist/pypy/lang/smalltalk/primitives.py	(original)
+++ pypy/dist/pypy/lang/smalltalk/primitives.py	Fri Oct 26 00:38:30 2007
@@ -17,6 +17,7 @@
     raise PrimitiveFailedError()
 
 def subscript(idx, w_obj):
+    # XXX what does this do? explain
     if isinstance(w_obj, model.W_PointersObject):
         return w_obj.fetch(idx)
     elif isinstance(w_obj, model.W_WordsObject):


More information about the pypy-svn mailing list