[pypy-commit] pypy py3.3: Another fix

amauryfa noreply at buildbot.pypy.org
Thu Jan 8 23:41:42 CET 2015


Author: Amaury Forgeot d'Arc <amauryfa at gmail.com>
Branch: py3.3
Changeset: r75261:2c2d11fa98da
Date: 2015-01-08 23:41 +0100
http://bitbucket.org/pypy/pypy/changeset/2c2d11fa98da/

Log:	Another fix

diff --git a/pypy/module/__builtin__/functional.py b/pypy/module/__builtin__/functional.py
--- a/pypy/module/__builtin__/functional.py
+++ b/pypy/module/__builtin__/functional.py
@@ -289,7 +289,7 @@
                 space.newtuple([])])
 
     def descr___setstate__(self, space, w_state):
-        self.remaining = space.int_w(wstate)
+        self.remaining = space.int_w(w_state)
         n = space.len_w(self.w_sequence)
         if self.remaining < -1:
             self.remaining = -1


More information about the pypy-commit mailing list