Author: Armin Rigo <[email protected]>
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
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to