From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: master 7f0a252f216 1/2: Prefer python3 for python-interpreter Date: Mon, 30 Sep 2024 14:22:44 +0300 Message-ID: <86zfnp2xob.fsf@gnu.org> References: <86r0958t97.fsf@gnu.org> <86bk064gu8.fsf@gnu.org> <865xqe4drv.fsf@gnu.org> Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="36381"; mail-complaints-to="usenet@ciao.gmane.io" Cc: emacs-devel@gnu.org, arstoffel@gmail.com, kobarity@gmail.com To: Stefan Kangas Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Mon Sep 30 13:23:52 2024 Return-path: Envelope-to: ged-emacs-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1svEVL-0009Ja-Uw for ged-emacs-devel@m.gmane-mx.org; Mon, 30 Sep 2024 13:23:52 +0200 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1svEUa-0004n9-NW; Mon, 30 Sep 2024 07:23:06 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1svEUK-0004mM-OV for emacs-devel@gnu.org; Mon, 30 Sep 2024 07:22:50 -0400 Original-Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1svEUJ-0003CA-Ur; Mon, 30 Sep 2024 07:22:48 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=References:Subject:In-Reply-To:To:From:Date: mime-version; bh=RJnKodsR3u9mrgSZA1vrIUGMMgD83wxxzy92m4dkoNs=; b=FIHyZoNqDVc3 25Pi6np93TwfpeiyDWSwT+S5C3MEj8+ndIyOywVNNOW7wh8WUc/Xzyy7o3rR0bAMbErH6weEH1SdA QCjgnaZh6/S7LTPmEroKaI6QPon8LlMS0eih4NMUZ6nzFswn6RxblnCOh8OzIVJ1t72VUbDWW9pbv qoC581l2Ojl9Pggq+BKH+Xcu+1GV3Sz5vyUNwoo2eyGuBfCcBVGrQ/PkB8z6GVKXA7lSJMbgfFbk1 qYmQVcLJgbnMHju24lET63PqYWyXwTCG0leGROTTQ9hmVSJok4T0k9uYojapg3Kv5vfC+hc0zHC5l frOLkI+CPMKspxeGRW1a3g==; In-Reply-To: (message from Stefan Kangas on Sun, 29 Sep 2024 14:41:15 -0700) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.emacs.devel:324218 Archived-At: > From: Stefan Kangas > Date: Sun, 29 Sep 2024 14:41:15 -0700 > Cc: emacs-devel@gnu.org, Augusto Stoffel , kobarity > > Eli Zaretskii writes: > > > I'm not saying we should necessarily go back to a single fixed value. > > But we could, for example, test "python" before "python3". That > > should solve the above case. > > OK, then let's do that. It also seems to be Augusto's preferred option. > It should work on all my machines: let's hope that it works without any > problems elsewhere too. > > Assuming that we care about consistency between `python-interpreter' and > `python-shell-interpreter' (I think we should), this means reversing the > decision to prefer Python 3 that was made in Emacs 28.1 (commit > fa686f099800). > > So I've now made this change in dd4c67907eb. Thanks.