Merge pull request #1117 from ericvergnaud/python-del-keyword

added missing del keyword to Python targets
This commit is contained in:
Terence Parr 2016-03-30 02:29:51 +00:00
commit 69ff2669ee
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",