Skip to content

Commit

Permalink
[python] Add missing keywords python (#4134)
Browse files Browse the repository at this point in the history
* Add missing keywords python

* Correct shell script names

* Revert "Correct shell script names"

This reverts commit 37f8fe5.
  • Loading branch information
Arun authored and wing328 committed Oct 13, 2019
1 parent 7a22b14 commit e2eea60
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,8 @@ public PythonClientCodegen() {
"and", "del", "from", "not", "while", "as", "elif", "global", "or", "with",
"assert", "else", "if", "pass", "yield", "break", "except", "import",
"print", "class", "exec", "in", "raise", "continue", "finally", "is",
"return", "def", "for", "lambda", "try", "self", "nonlocal", "None", "True", "False"));
"return", "def", "for", "lambda", "try", "self", "nonlocal", "None", "True",
"False", "async", "await"));

regexModifiers = new HashMap<Character, String>();
regexModifiers.put('i', "IGNORECASE");
Expand Down

0 comments on commit e2eea60

Please # to comment.