added missing del keyword to Python targets

This commit is contained in:
Eric Vergnaud 2016-02-18 23:39:51 +08:00
parent d0fb48c2b8
commit 99b2d6616f
2 changed files with 2 additions and 2 deletions

View File

@ -50,7 +50,7 @@ public class Python2Target extends Target {
"abs", "all", "any", "apply", "as",
"bin", "bool", "buffer", "bytearray",
"callable", "chr", "classmethod", "coerce", "compile", "complex",
"delattr", "dict", "dir", "divmod",
"del", "delattr", "dict", "dir", "divmod",
"enumerate", "eval", "execfile",
"file", "filter", "float", "format", "frozenset",
"getattr", "globals",

View File

@ -50,7 +50,7 @@ public class Python3Target extends Target {
"abs", "all", "any", "apply", "as",
"bin", "bool", "buffer", "bytearray",
"callable", "chr", "classmethod", "coerce", "compile", "complex",
"delattr", "dict", "dir", "divmod",
"del", "delattr", "dict", "dir", "divmod",
"enumerate", "eval", "execfile",
"file", "filter", "float", "format", "frozenset",
"getattr", "globals",