[pypy-commit] pypy cpyext-gc-support: fix

arigo noreply at buildbot.pypy.org
Mon Oct 26 04:25:10 EDT 2015


Author: Armin Rigo <arigo at tunes.org>
Branch: cpyext-gc-support
Changeset: r80454:f8e26f5b1f8b
Date: 2015-10-26 09:24 +0100
http://bitbucket.org/pypy/pypy/changeset/f8e26f5b1f8b/

Log:	fix

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
@@ -118,6 +118,7 @@
 
 class W_PyCMethodObject(W_PyCFunctionObject):
     w_self = None
+    w_module = None
     def __init__(self, space, ml, w_type):
         self.space = space
         self.ml = ml
@@ -137,6 +138,7 @@
 
 class W_PyCClassMethodObject(W_PyCFunctionObject):
     w_self = None
+    w_module = None
     def __init__(self, space, ml, w_type):
         self.space = space
         self.ml = ml


More information about the pypy-commit mailing list