[issue16035] Segmentation fault in test suite of apsw

2012-09-26 Thread Roger Binns
Roger Binns added the comment: Thanks for finding this problem. I can repeat it with the patch and am in the process of fixing it. -- ___ Python tracker ___ ___

[issue16035] Segmentation fault in test suite of apsw

2012-09-25 Thread Stefan Krah
Stefan Krah added the comment: [Adding the apsw author to the cc.] Antoine is right, no Python bug here. I think we can close this. -- nosy: +rogerbinns stage: -> committed/rejected status: pending -> closed ___ Python tracker

[issue16035] Segmentation fault in test suite of apsw

2012-09-25 Thread Georg Brandl
Georg Brandl added the comment: Not a blocker then. -- priority: release blocker -> normal resolution: -> invalid status: open -> pending ___ Python tracker ___

[issue16035] Segmentation fault in test suite of apsw

2012-09-25 Thread Antoine Pitrou
Antoine Pitrou added the comment: The cause for Stefan's traceback looks quite clear: Connection_createaggregatefunction() release the GIL (through the PYSQLITE_CON_CALL macro) before calling into sqlite3_create_function_v2, which itself calls the destructor for the old aggregate function, aka

[issue16035] Segmentation fault in test suite of apsw

2012-09-25 Thread Benjamin Peterson
Benjamin Peterson added the comment: My guess is an extension problem (failing to aqcuire locks?) -- ___ Python tracker ___ ___ Python

[issue16035] Segmentation fault in test suite of apsw

2012-09-25 Thread Stefan Krah
Stefan Krah added the comment: I don't get a segfault, but a fatal error. Here's the back trace (unfortunately I've no time to debug this further today; sqlite is the latest version compiled from source): #0 0x771e6a75 in *__GI_raise (sig=) at ../nptl/sysdeps/unix/sysv/linux/raise.c:

[issue16035] Segmentation fault in test suite of apsw

2012-09-25 Thread Antoine Pitrou
Antoine Pitrou added the comment: I can't build apsw here: gcc -pthread -Wno-unused-result -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -fPIC -DEXPERIMENTAL=1 -DNDEBUG=1 -DAPSW_FORK_CHECKER=1 -DSQLITE_OMIT_LOAD_EXTENSION=1 -Isrc -I/home/antoine/opt/include/python3.3m -c src/apsw.c -o bui

[issue16035] Segmentation fault in test suite of apsw

2012-09-25 Thread Georg Brandl
Georg Brandl added the comment: Can you provide a stacktrace? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue16035] Segmentation fault in test suite of apsw

2012-09-25 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: -> pitrou ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.p

[issue16035] Segmentation fault in test suite of apsw

2012-09-25 Thread Arfrever Frehtes Taifersar Arahesis
New submission from Arfrever Frehtes Taifersar Arahesis: The fix for issue #13992 introduced segmentation fault in test suite of apsw (http://code.google.com/p/apsw/) (with Python 2.7, 3.2 and 3.3). $ python2.7 setup.py build running build running build_ext SQLite: Using system sqlite include/l