Re: [pypy-dev] vmprof compression

2015-03-28 Thread John Camara
I meant to mention them in my email as both of them are great options when you don't mind sacrificing some compression for significant improvements in compression and decompression speeds. These libraries are I/O bound when saving to a hard drive unless you are using a very low powered processor.

Re: [pypy-dev] Mod typing error

2015-03-28 Thread Armin Rigo
Hi Timothy, hi Ryan, On 28 March 2015 at 00:00, Ryan Gonzalez rym...@gmail.com wrote: I don't know much about RPython internals, but PyPy calls rpython.rtyper.lltypesystem.module.ll_math.math_fmod for modulus operations on floats. Yes, % on floats is not supported. You should use math.fmod()