From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Glenn Morris Newsgroups: gmane.emacs.bugs Subject: bug#17370: 24.3.90; user cannot disable inferior python run from python-mode when file is visited Date: Fri, 02 May 2014 16:10:34 -0400 Message-ID: References: <535F96ED.4070205@gmail.com> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1399061476 16620 80.91.229.3 (2 May 2014 20:11:16 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 2 May 2014 20:11:16 +0000 (UTC) Cc: 17370@debbugs.gnu.org, Fabian Ezequiel Gallina To: Andy Moreton Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Fri May 02 22:11:09 2014 Return-path: Envelope-to: geb-bug-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1WgJnX-0002AS-Iv for geb-bug-gnu-emacs@m.gmane.org; Fri, 02 May 2014 22:11:07 +0200 Original-Received: from localhost ([::1]:46118 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WgJnW-0002Kw-OZ for geb-bug-gnu-emacs@m.gmane.org; Fri, 02 May 2014 16:11:06 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:42438) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WgJnT-0002K0-Fh for bug-gnu-emacs@gnu.org; Fri, 02 May 2014 16:11:04 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WgJnS-0001ns-JP for bug-gnu-emacs@gnu.org; Fri, 02 May 2014 16:11:03 -0400 Original-Received: from debbugs.gnu.org ([140.186.70.43]:59631) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WgJnS-0001nn-Ge for bug-gnu-emacs@gnu.org; Fri, 02 May 2014 16:11:02 -0400 Original-Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.80) (envelope-from ) id 1WgJnS-0007dD-7p for bug-gnu-emacs@gnu.org; Fri, 02 May 2014 16:11:02 -0400 X-Loop: help-debbugs@gnu.org Resent-From: Glenn Morris Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Fri, 02 May 2014 20:11:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 17370 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: Original-Received: via spool by 17370-submit@debbugs.gnu.org id=B17370.139906143829299 (code B ref 17370); Fri, 02 May 2014 20:11:02 +0000 Original-Received: (at 17370) by debbugs.gnu.org; 2 May 2014 20:10:38 +0000 Original-Received: from localhost ([127.0.0.1]:48749 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1WgJn4-0007cT-92 for submit@debbugs.gnu.org; Fri, 02 May 2014 16:10:38 -0400 Original-Received: from fencepost.gnu.org ([208.118.235.10]:54958 ident=Debian-exim) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1WgJn1-0007cK-Af for 17370@debbugs.gnu.org; Fri, 02 May 2014 16:10:36 -0400 Original-Received: from rgm by fencepost.gnu.org with local (Exim 4.71) (envelope-from ) id 1WgJn0-0005RI-G3; Fri, 02 May 2014 16:10:34 -0400 X-Spook: USDOJ Bush Wired Kennedy MP5K-SD pink noise Etacs Downing X-Ran: ]\Y7>Hj#(46)i%?5v_J@{j8T'"O3)lmEr7|&?a_v}#%fMTU"!fnw]fo$W<;hW%9V>7+=h' X-Hue: blue X-Attribution: GM In-Reply-To: (Andy Moreton's message of "Tue, 29 Apr 2014 16:06:22 +0100") User-Agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 140.186.70.43 X-BeenThere: bug-gnu-emacs@gnu.org List-Id: "Bug reports for GNU Emacs, the Swiss army knife of text editors" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Original-Sender: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.bugs:88544 Archived-At: The issue seems to be that semantic-python-get-system-include-path runs some code to get the Python system include path (IMO this is a reasonable thing for it to do and I don't see the need to have an option controlling this). This calls: (python-shell-internal-send-string "import sys;print ('\\n'.join(sys.path))") It is this that hangs (in python-shell-send-string-no-output AFAICS). It also hangs in Emacs 24.3. emacs -Q -l python and evaluate the above.