Variable: python--not-raw-bytes-literal-start-regexp
python--not-raw-bytes-literal-start-regexp is a variable defined in
python.el.gz.
Value
"\\(?:\\`\\|[^[:alnum:]]\\)[Bb]\\(?:\"\"\"\\|'''\\|[\"']\\)\\'"
Documentation
A regular expression matching the start of a not-raw bytes literal.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/python.el.gz
(defconst python--not-raw-bytes-literal-start-regexp
(rx (or bos (not alnum)) (or "b" "B") (or "\"" "\"\"\"" "'" "'''") eos)
"A regular expression matching the start of a not-raw bytes literal.")