[pypy-svn] r78177 - pypy/trunk/pypy/objspace/flow

afa at codespeak.net afa at codespeak.net
Thu Oct 21 17:11:00 CEST 2010


Author: afa
Date: Thu Oct 21 17:10:59 2010
New Revision: 78177

Modified:
   pypy/trunk/pypy/objspace/flow/flowcontext.py
Log:
Improve comment


Modified: pypy/trunk/pypy/objspace/flow/flowcontext.py
==============================================================================
--- pypy/trunk/pypy/objspace/flow/flowcontext.py	(original)
+++ pypy/trunk/pypy/objspace/flow/flowcontext.py	Thu Oct 21 17:10:59 2010
@@ -466,7 +466,7 @@
     def SETUP_WITH(self, offsettoend, next_instr):
         # A simpler version than the 'real' 2.7 one:
         # directly call manager.__enter__(), don't use special lookup functions
-        # which are too complex for the flow object space.
+        # which don't make sense on the RPython type system.
         from pypy.interpreter.pyopcode import WithBlock
         w_manager = self.peekvalue()
         w_exit = self.space.getattr(w_manager, self.space.wrap("__exit__"))



More information about the Pypy-commit mailing list