diff options
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/basics/tests/list_clear.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/basics/tests/list_clear.py b/tests/basics/tests/list_clear.py new file mode 100644 index 000000000..406d7e823 --- /dev/null +++ b/tests/basics/tests/list_clear.py @@ -0,0 +1,4 @@ +# tests list.clear +x = [1, 2, 3, 4] +x.clear() +print(x) |
