forked from jasder/antlr
Merge pull request #1117 from ericvergnaud/python-del-keyword
added missing del keyword to Python targets
This commit is contained in:
commit
69ff2669ee
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
Loading…
Reference in New Issue