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

@@ -433,7 +433,7 @@ MAP_R = (TABLE_R, -1)
MAP = {
"stmt": MAP_R,
"call": MAP_R,
"del_stmt": MAP_R,
"delete": MAP_R,
"store": MAP_R,
"exprlist": MAP_R0,
}