Merge pull request #588 from Fraserbc/master

Adding support for the Python programming language
This commit is contained in:
Jack 2020-11-18 23:45:47 +00:00 committed by GitHub
commit ad361f4727
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 60 additions and 1 deletions

View file

@ -28,5 +28,6 @@
"persian",
"kazakh",
"vietnamese",
"vietnamese_1k"
"vietnamese_1k",
"python"
]

View file

@ -0,0 +1,58 @@
{
"name": "python",
"leftToRight": true,
"words":[
"and",
"as",
"assert",
"break",
"class",
"continue",
"def",
"del",
"elif",
"else",
"except",
"False",
"finally",
"for",
"from",
"global",
"if",
"import",
"in",
"is",
"lambda",
"None",
"not",
"or",
"pass",
"raise",
"return",
"True",
"try",
"while",
"with",
"yield",
"print",
"len",
"str",
"int",
"float",
"list",
"tuple",
"dict",
"set",
"range",
"sum",
"enumerate",
"zip",
"bool",
"reversed",
"sorted",
"min",
"max",
"any",
"all"
]
}