[pypy-issue] Issue #2888: PyPy3: try to turn W_LongObject to W_IntObject more often (pypy/pypy)

Armin Rigo issues-reply at bitbucket.org
Thu Sep 13 07:33:37 EDT 2018


New issue 2888: PyPy3: try to turn W_LongObject to W_IntObject more often
https://bitbucket.org/pypy/pypy/issues/2888/pypy3-try-to-turn-w_longobject-to

Armin Rigo:

To save memory, it would be useful to figure out some operations that generally give an integer that fits in a machine word, even if the operation involves large integers.  The most obvious example is ``long % int``.  On PyPy2 this must always give a ``long``, but there is no such condition on PyPy3.




More information about the pypy-issue mailing list