Author: Carl Friedrich Bolz <cfb...@gmx.de> Branch: space-newtext Changeset: r88076:149dea09020c Date: 2016-11-02 13:26 +0100 http://bitbucket.org/pypy/pypy/changeset/149dea09020c/
Log: weakref diff --git a/pypy/module/_weakref/interp__weakref.py b/pypy/module/_weakref/interp__weakref.py --- a/pypy/module/_weakref/interp__weakref.py +++ b/pypy/module/_weakref/interp__weakref.py @@ -271,10 +271,10 @@ """Return the number of weak references to 'obj'.""" lifeline = w_obj.getweakref() if lifeline is None: - return space.wrap(0) + return space.newint(0) else: result = lifeline.traverse(_weakref_count, 0) - return space.wrap(result) + return space.newint(result) def _get_weakrefs(lifeline, wref, result): w_ref = wref() _______________________________________________ pypy-commit mailing list pypy-commit@python.org https://mail.python.org/mailman/listinfo/pypy-commit