[pypy-svn] r68242 - pypy/trunk/pypy/interpreter

cfbolz at codespeak.net cfbolz at codespeak.net
Wed Oct 7 23:16:37 CEST 2009


Author: cfbolz
Date: Wed Oct  7 23:16:36 2009
New Revision: 68242

Modified:
   pypy/trunk/pypy/interpreter/nestedscope.py
Log:
kill some beautiful code from revision 1263


Modified: pypy/trunk/pypy/interpreter/nestedscope.py
==============================================================================
--- pypy/trunk/pypy/interpreter/nestedscope.py	(original)
+++ pypy/trunk/pypy/interpreter/nestedscope.py	Wed Oct  7 23:16:36 2009
@@ -195,11 +195,7 @@
     def STORE_DEREF(f, varindex, *ignored):
         # nested scopes: access a variable through its cell object
         w_newvalue = f.popvalue()
-        #try:
         cell = f.cells[varindex]
-        #except IndexError:
-        #    import pdb; pdb.set_trace()
-        #    raise
         cell.set(w_newvalue)
 
     def MAKE_CLOSURE(f, numdefaults, *ignored):



More information about the Pypy-commit mailing list