[pypy-issue] [issue1453] segfault with simple script on 2.0b2+

Brian Kearns tracker at bugs.pypy.org
Mon Apr 15 01:36:15 CEST 2013


New submission from Brian Kearns <bdkearns at gmail.com>:

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 <tracker at bugs.pypy.org>
<https://bugs.pypy.org/issue1453>
________________________________________


More information about the pypy-issue mailing list