del_stmt -> delete to match Python AST better

This commit is contained in:
rocky
2020-09-02 07:14:56 -04:00
parent 67c45467c3
commit 8879708da7
12 changed files with 32 additions and 32 deletions

View File

@@ -8,7 +8,7 @@ b = [4, 5, 6]
del b[1]
del b[:]
# del_stmt ::= expr expr DELETE_SLICE+1
# delete ::= expr expr DELETE_SLICE+1
l = [None] * 10
del l[-2:]