This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: 2.3.1 re_test causes sigsegv
Type: Stage:
Components: Regular Expressions Versions: Python 2.3
process
Status: closed Resolution: works for me
Dependencies: Superseder:
Assigned To: effbot Nosy List: anthonybaxter, effbot, gaul, nnorwitz, tnoo
Priority: normal Keywords:

Created on 2003-09-25 23:43 by tnoo, last changed 2022-04-10 16:11 by admin. This issue is now closed.

Messages (4)
msg18375 - (view) Author: Martin Lüthi (tnoo) Date: 2003-09-25 23:43
I compiled Python 2.3.1 on a SuSE Linux 8.1 system 
 
Python 2.3.1 (#1, Sep 25 2003, 14:13:07)  
[GCC 3.3 20030226 (prerelease) (SuSE Linux)] on linux2 
 
running the test, I get sigsev 
 
python test/test_re.py 
test_anyall (__main__.ReTests) ... ok 
test_basic_re_sub (__main__.ReTests) ... ok 
test_bigcharset (__main__.ReTests) ... ok 
test_bug_113254 (__main__.ReTests) ... ok 
test_bug_114660 (__main__.ReTests) ... ok 
test_bug_117612 (__main__.ReTests) ... ok 
Segmentation fault 
 
Thanks 
 
Martin 
msg18376 - (view) Author: Anthony Baxter (anthonybaxter) (Python triager) Date: 2003-09-26 17:32
Logged In: YES 
user_id=29957

Hm. What version of libc is that system running? I've not
got a gcc 3.3 anywhere handy - could you try rebuilding the
_sre.c file without optimisation?
touch Modules/_sre.c
make OPT="-g" 
should do it.
msg18377 - (view) Author: Andrew Gaul (gaul) Date: 2003-10-02 20:12
Logged In: YES 
user_id=139865

Cannot reproduce with Python 2.3.2rc1, Red Hat 7.3, GCC
3.3.1, and glibc-2.2.5-43.  Note that reporter is using a
prerelease of GCC 3.3; the proper release is 20030514.
msg18378 - (view) Author: Neal Norwitz (nnorwitz) * (Python committer) Date: 2005-10-02 06:22
Logged In: YES 
user_id=33168

Closing since we can't reproduce.  If someone finds this is
really a problem, please reopen.
History
Date User Action Args
2022-04-10 16:11:23adminsetgithub: 39305
2003-09-25 23:43:44tnoocreate