New submission from Brian Kearns <[email protected]>:
this script segfaults in about one second on pypy 2.0b2 and latest nightly pypy-
c-jit-63352-c547e2d2e237-linux64
these versions are fairly unusable
----------------------
import _sqlite3
import thread
import time
def f():
con = _sqlite3.connect(':memory:')
while 1:
con.execute("select 42")
thread.start_new_thread(f, ())
thread.start_new_thread(f, ())
while 1:
time.sleep(1)
----------
messages: 5576
nosy: bdk, pypy-issue
priority: critical
status: unread
title: segfault with simple script on 2.0b2+
________________________________________
PyPy bug tracker <[email protected]>
<https://bugs.pypy.org/issue1453>
________________________________________
_______________________________________________
pypy-issue mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-issue