crashappsec / libcon4m

Base Compiler and Runtime Support for con4m
Apache License 2.0
0 stars 0 forks source link

lists: consider behavior of assigning to a slice up to `-1` #79

Closed ee7 closed 3 months ago

ee7 commented 3 months ago

Tracking issue for https://github.com/crashappsec/libcon4m/pull/73#discussion_r1665931521.

Example

x = [10, 20, 30, 40]
x[1:-1] = [100]
print(x)

currently outputs [10, 100].