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#18794: 24.4; python mode eldoc unnecessarily resizes echo area Date: Sat, 15 Nov 2014 16:01:32 -0300 Message-ID: <877fywguer.fsf@gnu.org> References: <82lho8413l.fsf@gmail.com> 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 1416078135 4934 80.91.229.3 (15 Nov 2014 19:02:15 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 15 Nov 2014 19:02:15 +0000 (UTC) To: 18794-done@debbugs.gnu.org Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Sat Nov 15 20:02:08 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 1Xpibn-0005ux-1M for geb-bug-gnu-emacs@m.gmane.org; Sat, 15 Nov 2014 20:02:07 +0100 Original-Received: from localhost ([::1]:41676 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xpibm-0008Px-N2 for geb-bug-gnu-emacs@m.gmane.org; Sat, 15 Nov 2014 14:02:06 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:41885) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xpibj-0008Pn-H4 for bug-gnu-emacs@gnu.org; Sat, 15 Nov 2014 14:02:04 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Xpibi-0001K9-PG for bug-gnu-emacs@gnu.org; Sat, 15 Nov 2014 14:02:03 -0500 Original-Received: from debbugs.gnu.org ([140.186.70.43]:36890) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xpibi-0001K5-N2 for bug-gnu-emacs@gnu.org; Sat, 15 Nov 2014 14:02:02 -0500 Original-Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.80) (envelope-from ) id 1Xpibi-0006T8-GL for bug-gnu-emacs@gnu.org; Sat, 15 Nov 2014 14:02:02 -0500 In-Reply-To: <82lho8413l.fsf@gmail.com> Resent-From: fgallina@gnu.org (=?UTF-8?Q?Fabi=C3=A1n?= Ezequiel Gallina) Original-Sender: "Debbugs-submit" Resent-To: bug-gnu-emacs@gnu.org Resent-Date: Sat, 15 Nov 2014 19:02:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: cc-closed 18794 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch Mail-Followup-To: 18794@debbugs.gnu.org, fgallina@gnu.org, carlosjosepita@gmail.com Original-Received: via spool by 18794-done@debbugs.gnu.org id=D18794.141607809824809 (code D ref 18794); Sat, 15 Nov 2014 19:02:02 +0000 Original-Received: (at 18794-done) by debbugs.gnu.org; 15 Nov 2014 19:01:38 +0000 Original-Received: from localhost ([127.0.0.1]:34102 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XpibK-0006S5-2b for submit@debbugs.gnu.org; Sat, 15 Nov 2014 14:01:38 -0500 Original-Received: from fencepost.gnu.org ([208.118.235.10]:53724) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XpibH-0006Rv-V0 for 18794-done@debbugs.gnu.org; Sat, 15 Nov 2014 14:01:36 -0500 Original-Received: from [190.246.172.180] (port=38969 helo=localhost) by fencepost.gnu.org with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1XpibG-00011t-WE for 18794-done@debbugs.gnu.org; Sat, 15 Nov 2014 14:01:35 -0500 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:96077 I cannot replicate this issue with Python 2.7.6 and Python 3.4.0 Given the following example file: try: from urlparse import urlparse except ImportError: from urllib.parse import urlparse urlparse def afunction(a, b, c=3D3, d=3DNone): pass Sending it with `python-shell-send-buffer` and then enabling eldoc-mode. The observed behavior is: 1. Placing the cursor over "urlparse", echo area displays "Parse a URL into 6 components:", without extra newline. 2. Placing the cursor over "afunction", shows the signature of the function without extra newlines. I'm closing this one, if you have a proper recipe, please re-open with it. Fabi=C3=A1n