[python] Add missing keywords python (#4134)

* Add missing keywords python

* Correct shell script names

* Revert "Correct shell script names"

This reverts commit 37f8fe5af14f00eb464d48f17b8db4d3935a6f9c.
This commit is contained in:
Arun 2019-10-13 15:34:02 +05:30 committed by William Cheng
parent 7a22b14df2
commit e2eea606fd

View File

@ -127,7 +127,8 @@ public class PythonClientCodegen extends DefaultCodegen implements CodegenConfig
"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");