diff --git a/test/fixtures/python/delete-statement.A.py b/test/fixtures/python/delete-statement.A.py new file mode 100644 index 000000000..543681e83 --- /dev/null +++ b/test/fixtures/python/delete-statement.A.py @@ -0,0 +1,2 @@ +del a[1], b[2] + diff --git a/test/fixtures/python/delete-statement.B.py b/test/fixtures/python/delete-statement.B.py new file mode 100644 index 000000000..3b1339974 --- /dev/null +++ b/test/fixtures/python/delete-statement.B.py @@ -0,0 +1,2 @@ +del b[1], a[2] +