Author: Armin Rigo <[email protected]>
Branch: cpyext-gc-support-2
Changeset: r82238:8a49781b1d09
Date: 2016-02-14 12:17 +0100
http://bitbucket.org/pypy/pypy/changeset/8a49781b1d09/
Log: fix intobject.py
diff --git a/pypy/module/cpyext/intobject.py b/pypy/module/cpyext/intobject.py
--- a/pypy/module/cpyext/intobject.py
+++ b/pypy/module/cpyext/intobject.py
@@ -38,8 +38,8 @@
w_obj = space.allocate_instance(W_IntObject, w_type)
w_obj.__init__(intval)
track_reference(space, obj, w_obj)
- state = space.fromcache(RefcountState)
- state.set_lifeline(w_obj, obj)
+ #state = space.fromcache(RefcountState)
+ #state.set_lifeline(w_obj, obj)
return w_obj
PyInt_Check, PyInt_CheckExact = build_type_checkers("Int")
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit