* lisp/progmodes/python.el (python-shell-send-region): Deactivate
mark after executing (bug#28789). This is how this command worked
in Emacs 24, apparently.
;; lines have been removed/added.
(with-current-buffer (process-buffer process)
(compilation-forget-errors))
- (python-shell-send-string string process)))
+ (python-shell-send-string string process)
+ (deactivate-mark)))
(defun python-shell-send-statement (&optional send-main msg)
"Send the statement at point to inferior Python process.