tests/cpydiff: Add a test for storing iterable to a list slice.

pull/2399/merge
Damien George 2017-02-20 17:22:12 +11:00
rodzic 3218ccd70d
commit 465a604547
1 zmienionych plików z 9 dodań i 0 usunięć

Wyświetl plik

@ -0,0 +1,9 @@
"""
categories: Types,list
description: List slice-store with non-iterable on RHS is not implemented
cause: RHS is restricted to be a tuple or list
workaround: Use ``list(<iter>)`` on RHS to convert the iterable to a list
"""
l = [10, 20]
l[0:1] = range(4)
print(l)