New issue 2141: pypy 2.6.1 crash on windows
https://bitbucket.org/pypy/pypy/issues/2141/pypy-261-crash-on-windows

BB Z:

This script will cause pypy 2.6.1 crash on windows (using PyPy 2.6.1 with MSC 
v.1500 32 bit):


```
#!python

import threading

def run():
    while True:
        x = 1
        print x

ts = []
for i in xrange(100):
    ts.append(threading.Thread(target=run))

for t in ts:
    t.start()

```


If I turn --jit off, it does not crash.

And here is jit logfile https://bitbucket.org/snippets/zbb42/Xo5d4

;)


_______________________________________________
pypy-issue mailing list
pypy-issue@python.org
https://mail.python.org/mailman/listinfo/pypy-issue

Reply via email to