From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: fgallina@gnu.org (=?UTF-8?Q?Fabi=C3=A1n?= Ezequiel Gallina) Newsgroups: gmane.emacs.bugs Subject: bug#16875: python, comint-mode: Large output makes Emacs freeze Date: Tue, 24 Jun 2014 22:19:08 -0300 Message-ID: <87bnth4whf.fsf@gnu.org> References: <530C60A7.1030009@easy-emacs.de> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1403659218 6886 80.91.229.3 (25 Jun 2014 01:20:18 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 25 Jun 2014 01:20:18 +0000 (UTC) To: 16875@debbugs.gnu.org Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Wed Jun 25 03:20:12 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 1Wzbsh-0007vU-Gm for geb-bug-gnu-emacs@m.gmane.org; Wed, 25 Jun 2014 03:20:11 +0200 Original-Received: from localhost ([::1]:34558 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wzbsg-0001z5-TV for geb-bug-gnu-emacs@m.gmane.org; Tue, 24 Jun 2014 21:20:10 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:60991) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wzbse-0001xR-0h for bug-gnu-emacs@gnu.org; Tue, 24 Jun 2014 21:20:08 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WzbsZ-00032G-2v for bug-gnu-emacs@gnu.org; Tue, 24 Jun 2014 21:20:07 -0400 Original-Received: from debbugs.gnu.org ([140.186.70.43]:40423) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WzbsY-00031J-V8 for bug-gnu-emacs@gnu.org; Tue, 24 Jun 2014 21:20:03 -0400 Original-Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.80) (envelope-from ) id 1WzbsY-0004Xq-CO for bug-gnu-emacs@gnu.org; Tue, 24 Jun 2014 21:20:02 -0400 X-Loop: help-debbugs@gnu.org In-Reply-To: <530C60A7.1030009@easy-emacs.de> Resent-From: fgallina@gnu.org (=?UTF-8?Q?Fabi=C3=A1n?= Ezequiel Gallina) Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Wed, 25 Jun 2014 01:20:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 16875 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: Original-Received: via spool by 16875-submit@debbugs.gnu.org id=B16875.140365915517399 (code B ref 16875); Wed, 25 Jun 2014 01:20:02 +0000 Original-Received: (at 16875) by debbugs.gnu.org; 25 Jun 2014 01:19:15 +0000 Original-Received: from localhost ([127.0.0.1]:59806 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1Wzbrn-0004WZ-Fg for submit@debbugs.gnu.org; Tue, 24 Jun 2014 21:19:15 -0400 Original-Received: from fencepost.gnu.org ([208.118.235.10]:42215 ident=Debian-exim) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1Wzbrl-0004WQ-8g for 16875@debbugs.gnu.org; Tue, 24 Jun 2014 21:19:13 -0400 Original-Received: from 222-99-245-190.fibertel.com.ar ([190.245.99.222]:39070 helo=localhost) by fencepost.gnu.org with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1Wzbrk-00061U-Dy for 16875@debbugs.gnu.org; Tue, 24 Jun 2014 21:19:12 -0400 User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) 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:90765 Archived-At: This looks related to: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D13675 Some ways to attenuate irresponsiveness: 1. Disable python shell font-locking: (setq python-shell-enable-font-lock nil) 2. Use Python's pprint to print such expressions, this makes it behave pretty much like iPython: >>> import pprint >>> pprint.pprint([[[False] * 200 for i in range(3)] for j in range= (200)]) >From the python.el side there's not much we can do. Fabi=C3=A1n