[issue24228] Interpreter triggers segmentation fault at the starting

2020-05-14 Thread STINNER Victor
STINNER Victor added the comment: No activity since 2015, it was a bug in Python 3.4. Please retry with Python 3.8.3. I close the issue. -- nosy: +vstinner resolution: third party -> out of date stage: -> resolved status: open -> closed ___ Python

[issue24228] Interpreter triggers segmentation fault at the starting

2015-06-09 Thread doz
doz added the comment: The problem is only present with gcc optimization -Os . Not present with -O0 ,O1, O2, O3. Do you have an idea of the gcc pass responsible to that ? (I have also a similar problem with openssl) regards -- resolution: -> third party ___

[issue24228] Interpreter triggers segmentation fault at the starting

2015-05-19 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- nosy: +rhettinger ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue24228] Interpreter triggers segmentation fault at the starting

2015-05-19 Thread doz
doz added the comment: Problem also present with only configuration option : --enable-ipv6 --enable-shared --disable-curses --with-libmpdec=none --with-expat=none --enable-old-stdlib-cache --disable-sqlite3 --disable-codecs-cjk --disable-ossaudiodev --with-pydebug -- __

[issue24228] Interpreter triggers segmentation fault at the starting

2015-05-19 Thread doz
doz added the comment: value of ep->me_key equals 0 -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

[issue24228] Interpreter triggers segmentation fault at the starting

2015-05-19 Thread doz
doz added the comment: I manually disabled xxlimited (file xxlimited.c removed , and lines in setup.py commented) because : In file included from ./Include/Python.h:68, from /build/python3-3.4.2/Modules/xxlimited.c:17: ./Include/object.h:65:2: error: #error Py_LIMITED_API

[issue24228] Interpreter triggers segmentation fault at the starting

2015-05-18 Thread Ned Deily
Ned Deily added the comment: Try building python with debug on: ./configure --with-pydebug [...] Also, 3.4.2 has been replaced by 3.4.3 which includes the fixes from Issue22653. -- nosy: +ned.deily ___ Python tracker

[issue24228] Interpreter triggers segmentation fault at the starting

2015-05-18 Thread doz
doz added the comment: I already try to apply patches from http://bugs.python.org/issue22653 . It don't solve problem. -- ___ Python tracker ___

[issue24228] Interpreter triggers segmentation fault at the starting

2015-05-18 Thread doz
New submission from doz: Hello, Python 3.4.2 triggers a segmentation fault at the starting on my ARM9 platform. Crash occurs also with 3.3. The version 2.7 don't crash and seems to work correctly System is built with buildroot-2015.02 and gcc 4.2.1. Fault is always reproducible. Pleas