-
-
Notifications
You must be signed in to change notification settings - Fork 33.1k
Closed
Labels
3.14bugs and security fixesbugs and security fixes3.15new features, bugs and security fixesnew features, bugs and security fixesinterpreter-core(Objects, Python, Grammar, and Parser dirs)(Objects, Python, Grammar, and Parser dirs)release-blockertype-crashA hard crash of the interpreter, possibly with a core dumpA hard crash of the interpreter, possibly with a core dump
Description
Crash report
What happened?
A segmentation fault (SIGSEGV) occurs when executing a list comprehension containing a lambda expression in Python 3.14.0rc2+. The crash is reproducible with a minimal code snippet and does not occur in earlier versions (e.g., Python 3.13).
Description:
The following code causes a segmentation fault in Python 3.14.0rc2+:
def report_error():
pass
try:
[0 for name_2 in unique_name_0 if (lambda: name_2)]
except:
pass
unique_name_1: 0
> ../cpython/install/bin/python3 -X faulthandler crash.py
Fatal Python error: Segmentation fault
Current thread 0x00007f056f764740 [python3] (most recent call first):
File "/home/frank/projects/pysource-playground/crash.py", line 7 in <module>
Current thread's C stack trace (most recent call first):
Binary file "../cpython/install/bin/python3", at _Py_DumpStack+0x2e [0x55dc00a44c9e]
Binary file "../cpython/install/bin/python3", at +0x2fd99a [0x55dc00a5999a]
Binary file "/lib/x86_64-linux-gnu/libc.so.6", at +0x3c050 [0x7f056f7a3050]
Binary file "../cpython/install/bin/python3", at +0x18624b [0x55dc008e224b]
Binary file "../cpython/install/bin/python3", at _PyEval_EvalFrameDefault+0x16b8 [0x55dc007e6368]
Binary file "../cpython/install/bin/python3", at PyEval_EvalCode+0x2c6 [0x55dc009b5016]
Binary file "../cpython/install/bin/python3", at +0x2cbaee [0x55dc00a27aee]
Binary file "../cpython/install/bin/python3", at +0x2cd9a4 [0x55dc00a299a4]
Binary file "../cpython/install/bin/python3", at +0x2ce03c [0x55dc00a2a03c]
Binary file "../cpython/install/bin/python3", at +0x2fbb89 [0x55dc00a57b89]
Binary file "../cpython/install/bin/python3", at Py_BytesMain+0x64 [0x55dc00a58234]
Binary file "/lib/x86_64-linux-gnu/libc.so.6", at +0x2724a [0x7f056f78e24a]
Binary file "/lib/x86_64-linux-gnu/libc.so.6", at __libc_start_main+0x85 [0x7f056f78e305]
Binary file "../cpython/install/bin/python3", at _start+0x21 [0x55dc007f6481]
fish: Job 1, '../cpython/install/bin/python3 …' terminated by signal SIGSEGV (Adressbereichsfehler)
I build cpython with:
./configure --prefix=$PWD/install --disable-ipv6
make -j install
The script did not crash but also not terminate when I used --with-pydebug
.
CPython versions tested on:
3.14
Operating systems tested on:
Linux
Output from running 'python -VV' on the command line:
No response
Linked PRs
Metadata
Metadata
Assignees
Labels
3.14bugs and security fixesbugs and security fixes3.15new features, bugs and security fixesnew features, bugs and security fixesinterpreter-core(Objects, Python, Grammar, and Parser dirs)(Objects, Python, Grammar, and Parser dirs)release-blockertype-crashA hard crash of the interpreter, possibly with a core dumpA hard crash of the interpreter, possibly with a core dump
Projects
Status
Done