all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Glenn Morris <rgm@gnu.org>
To: Balint Reczey <balint.reczey@canonical.com>
Cc: 45655@debbugs.gnu.org
Subject: bug#45655: Please use 'python3' command instead of 'python'
Date: Wed, 06 Jan 2021 11:59:28 -0500	[thread overview]
Message-ID: <5kczyim26n.fsf@fencepost.gnu.org> (raw)
In-Reply-To: <CAG+KjmMqr-w7nRRHCwhsP2M4xyKL4O1yk88CpBXUjLWN-5YAvw@mail.gmail.com> (Balint Reczey's message of "Mon, 4 Jan 2021 16:14:02 +0100")

Balint Reczey wrote:

> Python 2 reached EOL about a year ago thus the 'python' command may be
> missing on some systems. 'python3' is the standard way of invoking the
> Python 3 interpreter, thus Emacs would have a better chance trying
> that.
>
> The attached patch is already carried in Ubuntu.

Thanks for the report.

> --- a/lisp/ldefs-boot.el
> +++ b/lisp/ldefs-boot.el
> @@ -26539,7 +26539,7 @@
>  
>  (add-to-list 'interpreter-mode-alist (cons (purecopy "python[0-9.]*") 'python-mode))
>  
> -(autoload 'run-python "python" "\
> +(autoload 'run-python "python3" "\

This bit is wrong. Firstly, ldefs-boot is a generated file, and
secondly, unless Ubuntu is distributing a python3.el, it would just
break the autoload.

> --- a/lisp/progmodes/python.el
> +++ b/lisp/progmodes/python.el
> @@ -1952,7 +1952,7 @@
>    :group 'python
>    :safe 'stringp)
>  
> -(defcustom python-shell-interpreter "python"
> +(defcustom python-shell-interpreter "python3"

(if (executable-find "python3") "python3" "python")

is probably how Emacs would normally handle this kind of thing.
Or if defaulting to python3 is better (I guess it is):

(cond ((executable-find "python3") "python3")
      ((executable-find "python") "python")
      (t "python3"))





  reply	other threads:[~2021-01-06 16:59 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-01-04 15:14 bug#45655: Please use 'python3' command instead of 'python' Balint Reczey
2021-01-06 16:59 ` Glenn Morris [this message]
2021-01-06 17:47   ` Balint Reczey
2021-01-10 14:49     ` Lars Ingebrigtsen
2021-01-10 17:42 ` Stefan Monnier
2021-01-10 17:49   ` Balint Reczey
2021-01-10 20:48     ` Stefan Monnier
2021-01-11  5:17       ` Pankaj Jangid

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=5kczyim26n.fsf@fencepost.gnu.org \
    --to=rgm@gnu.org \
    --cc=45655@debbugs.gnu.org \
    --cc=balint.reczey@canonical.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.