antocuni changed the topic of #pypy to: PyPy, the flexible snake (IRC logs: https://botbot.me/freenode/pypy/ ) | use cffi for calling C | "PyPy: the Gradual Reduction of Magic (tm)"
abrown has quit [Quit: Leaving]
guilherme has quit [Remote host closed the connection]
<kenaan>
arigo pypy.org[extradoc] 3e1d30178f49 /source/download.txt: sha256 of pypy2-ppc64*
oberstet has joined #pypy
yuyichao_ has joined #pypy
yuyichao has quit [Ping timeout: 272 seconds]
guilherm_ has quit [Remote host closed the connection]
jamesaxl has quit [Quit: WeeChat 1.9.1]
nunatak has joined #pypy
<mattip>
when running python pytest.py --python pypy pypy/module/threads/test/test_threads::AppTestThread,
<mattip>
the setup_class function runs with python and fails to create 1000 threads,
<mattip>
but the test_many_threads test runs with pypy (in this case pypy3) which can create 1000 threads
<mattip>
on win32
meee2017 has joined #pypy
nunatak has quit [Quit: Leaving]
<mattip>
hmm, it seems the hanging pypy3.exe comes from module/time/test
<mattip>
indeed, time.sleep(float('nan')) hangs on win32
<nimaje>
what should that even do?
<mattip>
nimaje: raise an exception
<mattip>
on python2 it returns immeidately, on python3 it raises a ValueError
<nimaje>
ok, an exception is understandable for that
meee2017 has left #pypy [#pypy]
<kenaan>
mattip py3.5 0f5ba74055d1 /pypy/module/thread/test/test_thread.py: skip this on win32, the setup_class is run with python but the test with pypy3
<kenaan>
mattip py3.5 248a5a9859ef /pypy/module/time/test/test_time.py: make test fail not hang on win32