Skip to content

Slice assignment/deletion is not implemented #509

Closed
@pfalcon

Description

@pfalcon

We don't have following weird stuff implemented:

>>> a = [1,2,3,4]
>>> a[1:3] = [10,11,12,13]
>>> a
[1, 10, 11, 12, 13, 4]
>>> del a[2:5]
>>> a
[1, 10, 4]

This first of all relevant for lists, but should watch out for other types too.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions