Add `is not` and `not in` to python syntax (#10647)

pull/10634/head^2
Matthew Pomes 2024-05-03 05:39:02 -05:00 committed by GitHub
parent cfca30887c
commit 7e13213e74
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 0 deletions

View File

@ -215,9 +215,11 @@
[ [
"and" "and"
"or" "or"
"not in"
"in" "in"
"not" "not"
"del" "del"
"is not"
"is" "is"
] @keyword.operator ] @keyword.operator