[pypy-svn] r69239 - pypy/branch/faster-raise/pypy/module/exceptions

fijal at codespeak.net fijal at codespeak.net
Thu Nov 12 19:07:27 CET 2009


Author: fijal
Date: Thu Nov 12 19:07:26 2009
New Revision: 69239

Modified:
   pypy/branch/faster-raise/pypy/module/exceptions/interp_exceptions.py
Log:
(arigo, pedronis, fijal)
Fix translation issue


Modified: pypy/branch/faster-raise/pypy/module/exceptions/interp_exceptions.py
==============================================================================
--- pypy/branch/faster-raise/pypy/module/exceptions/interp_exceptions.py	(original)
+++ pypy/branch/faster-raise/pypy/module/exceptions/interp_exceptions.py	Thu Nov 12 19:07:26 2009
@@ -130,7 +130,7 @@
         return space.newtuple(self.args_w)
 
     def descr_setargs(space, self, w_newargs):
-        self.args_w = space.unpackiterable(w_newargs)
+        self.args_w = space.viewiterable(w_newargs)
 
     def getdict(self):
         if self.w_dict is None:



More information about the Pypy-commit mailing list