* lisp/progmodes/python.el (python-indent-repeat-map): New
keymap for repeating Python indentation commands when using
'repeat-mode' (bug#77417).
(cherry picked from commit
67c89a675df936abbd2b3925adda8d21b31ae59a)
;; Utilities
"<remap> <complete-symbol>" #'completion-at-point)
+(defvar-keymap python-indent-repeat-map
+ :doc "Keymap to repeat Python indentation commands.
+Used in `repeat-mode'."
+ :repeat t
+ "<" #'python-indent-shift-left
+ ">" #'python-indent-shift-right)
+
(easy-menu-define python-menu python-base-mode-map
"Menu used for ´python-mode'."
'("Python"