Variable: smart-python-keywords
smart-python-keywords is a variable defined in hmouse-tag.el.
Value
("and" "as" "assert" "break" "class" "continue" "def" "del" "elif" "else" "except" "false" "finally" "for" "from" "global" "if" "import" "in" "is" "lambda" "none" "nonlocal" "not" "or" "pass" "raise" "return" "true" "try" "while" "with" "yield")
Documentation
Sorted list of Python keywords, all in lowercase.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hmouse-tag.el
(defconst smart-python-keywords
'("and" "as" "assert" "break" "class" "continue" "def" "del" "elif"
"else" "except" "false" "finally" "for" "from" "global" "if"
"import" "in" "is" "lambda" "none" "nonlocal" "not" "or" "pass"
"raise" "return" "true" "try" "while" "with" "yield")
"Sorted list of Python keywords, all in lowercase.")