Author: Antonio Cuni <[email protected]>
Branch: cpyext-fast-typecheck
Changeset: r94083:8febb6bdae2a
Date: 2018-03-22 16:00 +0000
http://bitbucket.org/pypy/pypy/changeset/8febb6bdae2a/

Log:    bah

diff --git a/pypy/module/cpyext/methodobject.py 
b/pypy/module/cpyext/methodobject.py
--- a/pypy/module/cpyext/methodobject.py
+++ b/pypy/module/cpyext/methodobject.py
@@ -232,7 +232,7 @@
     def descr_call(self, space, w_self, __args__):
         return self.call(space, w_self, __args__)
 
-    def call(self, w_self, __args__):
+    def call(self, space, w_self, __args__):
         raise NotImplementedError
 
     def get_func_to_call(self):
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to