summaryrefslogtreecommitdiff
path: root/tests/micropython/heapalloc_exc_compressed.py
AgeCommit message (Collapse)Author
2022-03-07tests/micropython: Switch from set.pop to raise-0 to test exc strings.Damien George
To not rely on sets, which are an optional feature. Signed-off-by: Damien George <damien@micropython.org>
2020-04-05py/objexcept: Allow compression of exception message text.Jim Mussared
The decompression of error-strings is only done if the string is accessed via printing or via er.args. Tests are added for this feature to ensure the decompression works.