[pypy-commit] pypy cpyext-fast-typecheck: bah

antocuni pypy.commits at gmail.com
Thu Mar 22 12:00:41 EDT 2018


Author: Antonio Cuni <anto.cuni at gmail.com>
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):


More information about the pypy-commit mailing list