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

cfbolz at codespeak.net cfbolz at codespeak.net
Mon Dec 13 10:40:32 CET 2010


Author: cfbolz
Date: Mon Dec 13 10:40:26 2010
New Revision: 80024

Modified:
   pypy/trunk/pypy/interpreter/argument.py
Log:
fix test of r79907. apparently, no existing test needed this condition.


Modified: pypy/trunk/pypy/interpreter/argument.py
==============================================================================
--- pypy/trunk/pypy/interpreter/argument.py	(original)
+++ pypy/trunk/pypy/interpreter/argument.py	Mon Dec 13 10:40:26 2010
@@ -103,9 +103,9 @@
             make_sure_not_resized(self.keywords_w)
 
         make_sure_not_resized(self.arguments_w)
-        if w_stararg is not None and space.is_true(w_stararg):
+        if w_stararg is not None:
             self._combine_starargs_wrapped(w_stararg)
-        if w_starstararg is not None and space.is_true(w_starstararg):
+        if w_starstararg is not None:
             self._combine_starstarargs_wrapped(w_starstararg)
             # if we have a call where **args are used at the callsite
             # we shouldn't let the JIT see the argument matching



More information about the Pypy-commit mailing list