Skip to content

Commit 3f24dc7

Browse files
authored
Python: Add match and case (soft) keywords (#3142)
1 parent 344d0b2 commit 3f24dc7

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

components/prism-python.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Prism.languages.python = {
5151
'punctuation': /\./
5252
}
5353
},
54-
'keyword': /\b(?:and|as|assert|async|await|break|class|continue|def|del|elif|else|except|exec|finally|for|from|global|if|import|in|is|lambda|nonlocal|not|or|pass|print|raise|return|try|while|with|yield)\b/,
54+
'keyword': /\b(?:_(?=\s*:)|and|as|assert|async|await|break|case|class|continue|def|del|elif|else|except|exec|finally|for|from|global|if|import|in|is|lambda|match|nonlocal|not|or|pass|print|raise|return|try|while|with|yield)\b/,
5555
'builtin': /\b(?:__import__|abs|all|any|apply|ascii|basestring|bin|bool|buffer|bytearray|bytes|callable|chr|classmethod|cmp|coerce|compile|complex|delattr|dict|dir|divmod|enumerate|eval|execfile|file|filter|float|format|frozenset|getattr|globals|hasattr|hash|help|hex|id|input|int|intern|isinstance|issubclass|iter|len|list|locals|long|map|max|memoryview|min|next|object|oct|open|ord|pow|property|range|raw_input|reduce|reload|repr|reversed|round|set|setattr|slice|sorted|staticmethod|str|sum|super|tuple|type|unichr|unicode|vars|xrange|zip)\b/,
5656
'boolean': /\b(?:False|None|True)\b/,
5757
'number': /\b0(?:b(?:_?[01])+|o(?:_?[0-7])+|x(?:_?[a-f0-9])+)\b|(?:\b\d+(?:_\d+)*(?:\.(?:\d+(?:_\d+)*)?)?|\B\.\d+(?:_\d+)*)(?:e[+-]?\d+(?:_\d+)*)?j?(?!\w)/i,

components/prism-python.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/languages/python/keyword_feature.test

+4-2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ pass print raise return
99
try while with yield
1010
nonlocal
1111
and not or
12+
match case _:
1213

1314
----------------------------------------------------
1415

@@ -23,9 +24,10 @@ and not or
2324
["keyword", "pass"], ["keyword", "print"], ["keyword", "raise"], ["keyword", "return"],
2425
["keyword", "try"], ["keyword", "while"], ["keyword", "with"], ["keyword", "yield"],
2526
["keyword", "nonlocal"],
26-
["keyword", "and"], ["keyword", "not"], ["keyword", "or"]
27+
["keyword", "and"], ["keyword", "not"], ["keyword", "or"],
28+
["keyword", "match"], ["keyword", "case"], ["keyword", "_"], ["punctuation", ":"]
2729
]
2830

2931
----------------------------------------------------
3032

31-
Checks for all keywords.
33+
Checks for all keywords.

0 commit comments

Comments
 (0)