← index #17817Issue #17722
Related · high · value 3.677
QUERY · ISSUE

Assertion error on invalid string to compile()

openby jepleropened 2025-08-02updated 2025-08-02
bug

Port, board and/or hardware

unix port, coverage variant, x86_64 linux

MicroPython version

MicroPython v1.26.0-preview.521.g658a2e3dbd on 2025-08-02; linux [GCC 12.2.0] version

Reproduction

>>> compile("a\\\n", "", "eval")
micropython: ../../py/emitbc.c:356: mp_emit_bc_end_pass: Assertion `emit->stack_size == 0' failed.

Expected behaviour

Should throw a SyntaxError

Observed behaviour

crashes with an assertion failure

Additional Information

This crash was found by aflplusplus and minimized manually.

Code of Conduct

Yes, I agree

CANDIDATE · ISSUE

core: assertion error on syntactically invalid Python code

openby jepleropened 2025-07-20updated 2025-07-20
bug

Port, board and/or hardware

unix VARIANT=coverage

MicroPython version

MicroPython v1.26.0-preview.387.g67acac257f.dirty on 2025-07-19; linux [GCC 12.2.0] version

Reproduction

Run the following code:

def f(a, b): pass          
f(None, x=b"", y:=True)                                                 

Expected behaviour

Code is rejected at byte-compile time similar to Python:

  File "/tmp/qstrcrash.py", line 2
    f(None, x=b"", y:=True)
                          ^
SyntaxError: positional argument follows keyword argument

Observed behaviour

The file byte-compiles but an assertion error occurs when executing the call to f:

micropython: ../../py/qstr.c:198: find_qstr: Assertion `*q < pool->len' failed.

Additional Information

This is a minimized test case based on a crash found by fuzzing micropython

Code of Conduct

Yes, I agree

Keyboard

j / / n
next pair
k / / p
previous pair
1 / / h
show query pane
2 / / l
show candidate pane
c
copy suggested comment
r
toggle reasoning
g i
go to index
?
show this help
esc
close overlays

press ? or esc to close

copied