Function: python--treesit-fontify-union-types-strict

python--treesit-fontify-union-types-strict is a byte-compiled function defined in python.el.gz.

Signature

(python--treesit-fontify-union-types-strict NODE OVERRIDE START END &rest _)

Documentation

Fontify nested union types.

Same as python--treesit-fontify-union-types but type identifier should match against python--treesit-type-regex. For NODE, OVERRIDE, START and END description see python--treesit-fontify-union-types.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/python.el.gz
(defun python--treesit-fontify-union-types-strict (node override start end &rest _)
  "Fontify nested union types.
Same as `python--treesit-fontify-union-types' but type identifier
should match against `python--treesit-type-regex'.  For NODE,
OVERRIDE, START and END description see
`python--treesit-fontify-union-types'."
  (python--treesit-fontify-union-types node override start end python--treesit-type-regex))