[pypy-commit] pypy default: Fix unused code (but used by other people)

fijal noreply at buildbot.pypy.org
Mon Oct 22 22:01:09 CEST 2012


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: 
Changeset: r58373:c3aabbc07075
Date: 2012-10-22 22:00 +0200
http://bitbucket.org/pypy/pypy/changeset/c3aabbc07075/

Log:	Fix unused code (but used by other people)

diff --git a/pypy/objspace/flow/argument.py b/pypy/objspace/flow/argument.py
--- a/pypy/objspace/flow/argument.py
+++ b/pypy/objspace/flow/argument.py
@@ -204,7 +204,7 @@
         # if a **kwargs argument is needed, create the dict
         w_kwds = None
         if signature.has_kwarg():
-            w_kwds = self.space.newdict(kwargs=True)
+            w_kwds = self.space.newdict()
             scope_w[co_argcount + signature.has_vararg()] = w_kwds
 
         # handle keyword arguments


More information about the pypy-commit mailing list