From debbugs-submit-bounces@debbugs.gnu.org Fri Dec 14 06:41:52 2012 Received: (at submit) by debbugs.gnu.org; 14 Dec 2012 11:41:52 +0000 Received: from localhost ([127.0.0.1]:42007 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1TjTeK-0006dA-I6 for submit@debbugs.gnu.org; Fri, 14 Dec 2012 06:41:52 -0500 Received: from eggs.gnu.org ([208.118.235.92]:37412) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1TjTeH-0006d2-0s for submit@debbugs.gnu.org; Fri, 14 Dec 2012 06:41:50 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TjTdK-0000kJ-Iu for submit@debbugs.gnu.org; Fri, 14 Dec 2012 06:40:51 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-101.9 required=5.0 tests=BAYES_00,RP_MATCHES_RCVD, USER_IN_WHITELIST autolearn=unavailable version=3.3.2 Received: from lists.gnu.org ([208.118.235.17]:40053) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TjTdK-0000kF-BQ for submit@debbugs.gnu.org; Fri, 14 Dec 2012 06:40:50 -0500 Received: from eggs.gnu.org ([208.118.235.92]:48731) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TjTdF-0000rH-7a for bug-gnu-emacs@gnu.org; Fri, 14 Dec 2012 06:40:50 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TjTdB-0000i2-PA for bug-gnu-emacs@gnu.org; Fri, 14 Dec 2012 06:40:45 -0500 Received: from dancol.org ([96.126.100.184]:48014) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TjTdB-0000hJ-JZ for bug-gnu-emacs@gnu.org; Fri, 14 Dec 2012 06:40:41 -0500 Received: from c-76-22-66-162.hsd1.wa.comcast.net ([76.22.66.162] helo=[0.0.0.0]) by dancol.org with esmtpsa (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.72) (envelope-from ) id 1TjTd4-0002bx-4M for bug-gnu-emacs@gnu.org; Fri, 14 Dec 2012 03:40:34 -0800 Message-ID: <50CB102C.6020306@dancol.org> Date: Fri, 14 Dec 2012 03:40:28 -0800 From: Daniel Colascione User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:16.0) Gecko/20121026 Thunderbird/16.0.2 MIME-Version: 1.0 To: bug-gnu-emacs@gnu.org Subject: [PATCH] long delays in python-mode buffer parsing X-Enigmail-Version: 1.4.6 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enig387F8FE4CC0F41E7B2CCFF17" X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 208.118.235.17 X-Spam-Score: -4.2 (----) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -5.0 (-----) This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig387F8FE4CC0F41E7B2CCFF17 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Some python-mode operations slow down noticeably when the region being ed= ited contains an unclosed bracket or string: these constructs lead to python-m= ode scanning the entire remainder of the buffer, and this scan appears to tak= e time O(nr_lines^2). When which-func mode is enabled, this slowness renders Ema= cs unusable, since we'll call python-info-current-defun frequently in order = to update the modeline, and this function will take several seconds to compl= ete. The following patch appears to remedy the problem without breaking anythi= g. =3D=3D=3D modified file 'lisp/progmodes/python.el' --- lisp/progmodes/python.el 2012-11-27 03:10:32 +0000 +++ lisp/progmodes/python.el 2012-12-14 11:28:58 +0000 @@ -1184,13 +1184,21 @@ (defun python-nav-end-of-statement () "Move to end of current statement." (interactive "^") - (while (and (goto-char (line-end-position)) - (not (eobp)) - (when (or - (python-info-line-ends-backslash-p) - (python-syntax-context 'string) - (python-syntax-context 'paren)) - (forward-line 1)))) + + (let (string-start bs-pos) + (while (and (goto-char (line-end-position)) + (not (eobp)) + (cond ((setq string-start (python-syntax-context 'string= )) + (goto-char string-start) + (forward-sexp)) + ((python-syntax-context 'paren) + ;; The statement won't end before we've escaped + ;; at least one level of parenthesis. + (condition-case err + (goto-char (scan-lists (point) 1 -1)) + (scan-error (goto-char (nth 3 err))))) + ((setq bs-pos (python-info-line-ends-backslash-p))= + (goto-char bs-pos)))))) (point-marker)) (defun python-nav-backward-statement (&optional arg) --------------enig387F8FE4CC0F41E7B2CCFF17 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.12 (Cygwin) Comment: Using GnuPG with undefined - http://www.enigmail.net/ iEYEARECAAYFAlDLEC8ACgkQ17c2LVA10Vs8BACguuokbFLMRVt0bK7J8/nVmkQC TOsAn3SqllZxdDCtY3VF+Sb2lJVwrosS =Oy7/ -----END PGP SIGNATURE----- --------------enig387F8FE4CC0F41E7B2CCFF17-- From debbugs-submit-bounces@debbugs.gnu.org Sat Dec 15 01:45:29 2012 Received: (at 13182) by debbugs.gnu.org; 15 Dec 2012 06:45:29 +0000 Received: from localhost ([127.0.0.1]:43283 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1TjlV3-00031f-5T for submit@debbugs.gnu.org; Sat, 15 Dec 2012 01:45:29 -0500 Received: from dancol.org ([96.126.100.184]:58125) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1TjlUz-00031X-Pb for 13182@debbugs.gnu.org; Sat, 15 Dec 2012 01:45:27 -0500 Received: from c-76-22-66-162.hsd1.wa.comcast.net ([76.22.66.162] helo=[0.0.0.0]) by dancol.org with esmtpsa (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.72) (envelope-from ) id 1TjlTy-0007Vo-Ti for 13182@debbugs.gnu.org; Fri, 14 Dec 2012 22:44:22 -0800 Message-ID: <50CC1C43.8060809@dancol.org> Date: Fri, 14 Dec 2012 22:44:19 -0800 From: Daniel Colascione User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:16.0) Gecko/20121026 Thunderbird/16.0.2 MIME-Version: 1.0 To: 13182@debbugs.gnu.org Subject: Re: bug#13182: [PATCH] long delays in python-mode buffer parsing References: <50CB102C.6020306@dancol.org> In-Reply-To: <50CB102C.6020306@dancol.org> X-Enigmail-Version: 1.4.6 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enig2D80B6B641AD3271BA7F42F1" X-Spam-Score: 0.8 (/) X-Debbugs-Envelope-To: 13182 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -1.9 (-) This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig2D80B6B641AD3271BA7F42F1 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On 12/14/2012 3:40 AM, Daniel Colascione wrote: > Some python-mode operations slow down noticeably when the region being = edited > contains an unclosed bracket or string: these constructs lead to python= -mode > scanning the entire remainder of the buffer, and this scan appears to t= ake time > O(nr_lines^2). When which-func mode is enabled, this slowness renders E= macs > unusable, since we'll call python-info-current-defun frequently in orde= r to > update the modeline, and this function will take several seconds to com= plete. >=20 > The following patch appears to remedy the problem without breaking anyt= hig. Here's a bugfixed patch. Review would be appreciated. =3D=3D=3D modified file 'lisp/ChangeLog' --- lisp/ChangeLog 2012-12-10 18:33:59 +0000 +++ lisp/ChangeLog 2012-12-15 06:38:59 +0000 @@ -1,3 +1,12 @@ +2012-12-15 Daniel Colascione + + * progmodes/python.el (python-nav-end-of-statement): Don't loop forever= =2E + +2012-12-14 Daniel Colascione + + * progmodes/python.el (python-nav-end-of-statement): Rewrite in + order to improve efficiency. + 2012-12-10 Jambunathan K * hi-lock.el: Refine the choice of default face. =3D=3D=3D modified file 'lisp/progmodes/python.el' --- lisp/progmodes/python.el 2012-11-27 03:10:32 +0000 +++ lisp/progmodes/python.el 2012-12-15 06:28:38 +0000 @@ -1184,13 +1184,23 @@ (defun python-nav-end-of-statement () "Move to end of current statement." (interactive "^") - (while (and (goto-char (line-end-position)) - (not (eobp)) - (when (or - (python-info-line-ends-backslash-p) - (python-syntax-context 'string) - (python-syntax-context 'paren)) - (forward-line 1)))) + + (let (string-start bs-pos) + (while (and (goto-char (line-end-position)) + (not (eobp)) + (cond ((setq string-start (python-syntax-context 'string= )) + (goto-char string-start) + (let (forward-sexp-function) + (forward-sexp))) + ((python-syntax-context 'paren) + ;; The statement won't end before we've escaped + ;; at least one level of parenthesis. + (condition-case err + (goto-char (scan-lists (point) 1 -1)) + (scan-error (goto-char (nth 3 err))))) + ((setq bs-pos (python-info-line-ends-backslash-p))= + (goto-char bs-pos) + (forward-line 1)))))) (point-marker)) (defun python-nav-backward-statement (&optional arg) --------------enig2D80B6B641AD3271BA7F42F1 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.12 (Cygwin) Comment: Using GnuPG with undefined - http://www.enigmail.net/ iEYEARECAAYFAlDMHEMACgkQ17c2LVA10VszJQCdEQV4YgdWWADkU8PJ7HvFKKlj V+8AoMbfLY7CXNsWNbVcOu+RF4mOOq+9 =X1VL -----END PGP SIGNATURE----- --------------enig2D80B6B641AD3271BA7F42F1-- From debbugs-submit-bounces@debbugs.gnu.org Sat Dec 15 09:51:57 2012 Received: (at 13182) by debbugs.gnu.org; 15 Dec 2012 14:51:57 +0000 Received: from localhost ([127.0.0.1]:43547 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1Tjt5o-0006jr-P8 for submit@debbugs.gnu.org; Sat, 15 Dec 2012 09:51:57 -0500 Received: from ironport2-out.teksavvy.com ([206.248.154.182]:42393) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1Tjt5l-0006jj-Lq for 13182@debbugs.gnu.org; Sat, 15 Dec 2012 09:51:54 -0500 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: Av0EAG6Zu09MCoyD/2dsb2JhbABEtBGBCIIVAQEEAVYjBQsLDiYSFBgNJIgcBboJkEQDiEKacYFYgwc X-IronPort-AV: E=Sophos;i="4.75,637,1330923600"; d="scan'208";a="209985457" Received: from 76-10-140-131.dsl.teksavvy.com (HELO fmsmemgm.homelinux.net) ([76.10.140.131]) by ironport2-out.teksavvy.com with ESMTP/TLS/ADH-AES256-SHA; 15 Dec 2012 09:50:49 -0500 Received: by fmsmemgm.homelinux.net (Postfix, from userid 20848) id BA976AE3F7; Sat, 15 Dec 2012 09:50:48 -0500 (EST) From: Stefan Monnier To: Daniel Colascione Subject: Re: bug#13182: [PATCH] long delays in python-mode buffer parsing Message-ID: References: <50CB102C.6020306@dancol.org> <50CC1C43.8060809@dancol.org> Date: Sat, 15 Dec 2012 09:50:48 -0500 In-Reply-To: <50CC1C43.8060809@dancol.org> (Daniel Colascione's message of "Fri, 14 Dec 2012 22:44:19 -0800") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.8 (/) X-Debbugs-Envelope-To: 13182 Cc: 13182@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -0.0 (/) > Here's a bugfixed patch. Review would be appreciated. It looks fine in general. I prefer using forward-sexp over scan-lists, but that's just a personal preference. Also, a single changelog entry will do, if you commit it as a single commit. Stefan From debbugs-submit-bounces@debbugs.gnu.org Fri Dec 28 10:29:18 2012 Received: (at 13182) by debbugs.gnu.org; 28 Dec 2012 15:29:18 +0000 Received: from localhost ([127.0.0.1]:34963 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1Tobs4-0003fb-3G for submit@debbugs.gnu.org; Fri, 28 Dec 2012 10:29:18 -0500 Received: from mail-gh0-f179.google.com ([209.85.160.179]:57561) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1Tobs1-0003fS-UM for 13182@debbugs.gnu.org; Fri, 28 Dec 2012 10:29:14 -0500 Received: by mail-gh0-f179.google.com with SMTP id r14so1110219ghr.10 for <13182@debbugs.gnu.org>; Fri, 28 Dec 2012 07:28:19 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received:message-id:date:from:user-agent:mime-version:to:subject :content-type:content-transfer-encoding:x-gm-message-state; bh=0asL5K9FqVediEuZcVwQg52djILYOWR1c9EF5GR1zrc=; b=fekBVb/TUjoFk2+7phYOzjdxS4YesPfKHxsncPWSH6fg+Uu9BMtIfDGW1lj0D/ekuK s2/LBzdwSu3Y0sGHFYO0PAuSAmLLq5PCfYn3C/6DFSRUcfY4Rm7xlzd2YCe8a4DoNoAf cXXImPIGZ0jjf8fk6totxb50ujYtw4rGwp8z8dYSTL1fVswN95HBHWRgayLoTtUEGTmA 1ku2kMjyxQmLU/cfsr7gy8OxmLMpYCW6S3P3GRdxNE4IMqTkvjGB0Z4YKv67ulSnBZZz rFotyxbXPKQfbJ1SVtTfmp7CM6UljVEzTyRvYkWfV8hk/W/Jmcl9eWLCoTKVYFTR+BYM DcgQ== X-Received: by 10.236.125.133 with SMTP id z5mr31085008yhh.121.1356708498825; Fri, 28 Dec 2012 07:28:18 -0800 (PST) Received: from [192.168.1.25] (host76.190-30-43.telecom.net.ar. [190.30.43.76]) by mx.google.com with ESMTPS id g77sm30637637yhi.14.2012.12.28.07.28.17 (version=SSLv3 cipher=OTHER); Fri, 28 Dec 2012 07:28:17 -0800 (PST) Message-ID: <50DDBACE.3020208@anue.biz> Date: Fri, 28 Dec 2012 12:29:18 -0300 From: =?ISO-8859-1?Q?Fabi=E1n_Ezequiel_Gallina?= User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/17.0 Thunderbird/17.0 MIME-Version: 1.0 To: 13182@debbugs.gnu.org Subject: [PATCH] long delays in python-mode buffer parsing Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Gm-Message-State: ALoCoQlWhBzF0AdtYqbim63GCyRijQ3+y50tSx45ZgL1iGPJ5MnDOXfRjPF4KvI1rNYP/3ViyugB X-Spam-Score: 0.1 (/) X-Debbugs-Envelope-To: 13182 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -2.6 (--) The patch looks good and given this is a speed regression this should be committed to the emacs-24 branch, please do it and then we can close this bug. Thanks, Fabián. From debbugs-submit-bounces@debbugs.gnu.org Mon Dec 31 16:02:30 2012 Received: (at 13182) by debbugs.gnu.org; 31 Dec 2012 21:02:30 +0000 Received: from localhost ([127.0.0.1]:38388 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1TpmV9-0005Ae-EM for submit@debbugs.gnu.org; Mon, 31 Dec 2012 16:02:29 -0500 Received: from mail-yh0-f45.google.com ([209.85.213.45]:35074) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1TpmV3-0005AR-BX for 13182@debbugs.gnu.org; Mon, 31 Dec 2012 16:02:24 -0500 Received: by mail-yh0-f45.google.com with SMTP id f64so113826yha.4 for <13182@debbugs.gnu.org>; Mon, 31 Dec 2012 13:01:09 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received:message-id:date:from:user-agent:mime-version:to:subject :content-type:content-transfer-encoding:x-gm-message-state; bh=hp5/0BiNX6dtqLFfG51ljspiHFcT+1hvRPiDVsDODn4=; b=Mt+vxJIkT1rBMXzCRJqJicQ/2vHOWRA1It9Ltypw/p6myTjrXPh+XtMttv+ObEROSY wGwEaNJ/PfCPboNYYIjjuhrh76OnyHWYWVkgGPhSlnJqWaijhwyFhaK9o0jiuzWo+Lsl JECx900gFAQNtSXndYmA0MqekYMyDl4bahrnJMBdvNrr37xMkoeXY1R45bxVBbGbXbiR zTHWDz58/Q1bDSM8zkw+9KlEYeKXhe2tC5l48b2G98QuNqUcJ1a/7ibKICutOiwS7+IM p+rp1cXlXz8Da9uBKlsjrQal3F7lNcGETuwhEmOsMrOJnSl9OAXJqlS9dbhmc7QEaJGD 3kVA== X-Received: by 10.236.151.68 with SMTP id a44mr38557333yhk.59.1356987668275; Mon, 31 Dec 2012 13:01:08 -0800 (PST) Received: from [192.168.1.136] (OL144-145.fibertel.com.ar. [24.232.145.144]) by mx.google.com with ESMTPS id e7sm34329341ang.8.2012.12.31.13.01.06 (version=SSLv3 cipher=OTHER); Mon, 31 Dec 2012 13:01:07 -0800 (PST) Message-ID: <50E1FD4E.2090806@anue.biz> Date: Mon, 31 Dec 2012 18:02:06 -0300 From: =?ISO-8859-1?Q?Fabi=E1n_Ezequiel_Gallina?= User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/17.0 Thunderbird/17.0 MIME-Version: 1.0 To: 13182@debbugs.gnu.org Subject: [PATCH] long delays in python-mode buffer parsing Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Gm-Message-State: ALoCoQmpcIu5w37FaC6+kkqM+5l7+pI+BBlcf2PZW3nQzW3UYXRvAb682DpFVvQawL/y6O8XeAG2 X-Spam-Score: 0.1 (/) X-Debbugs-Envelope-To: 13182 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -2.6 (--) I just installed a modified version of your patch in revno 111108. This modified version would jump correctly to the end of defun in the following context: doing_something(""" This is preformatted text and should not be indented to the level of the parentheses. """ ) From debbugs-submit-bounces@debbugs.gnu.org Mon Dec 31 16:03:04 2012 Received: (at control) by debbugs.gnu.org; 31 Dec 2012 21:03:04 +0000 Received: from localhost ([127.0.0.1]:38392 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1TpmVk-0005Bq-Nu for submit@debbugs.gnu.org; Mon, 31 Dec 2012 16:03:04 -0500 Received: from mail-yh0-f48.google.com ([209.85.213.48]:54166) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1TpmVi-0005BZ-Ii for control@debbugs.gnu.org; Mon, 31 Dec 2012 16:03:02 -0500 Received: by mail-yh0-f48.google.com with SMTP id q46so2055893yhf.7 for ; Mon, 31 Dec 2012 13:01:50 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received:message-id:date:from:user-agent:mime-version:to :content-type:content-transfer-encoding:x-gm-message-state; bh=6nwHZdpmsGRir54aDvpHtaqOZZI4nKshAFzrp2SJDgg=; b=C9i7IeVMAUKNLKYoW1W2ss9A+bk3nU2Zh+IOaHEMAUa8z7OQJDRG9pdRmyw1/03xJ2 KHh7HTuO5uqobg/qp8za4hRKMIkOb++ILPO1XZa9+svypDVDE2f9wiouseOOU4zTmzor Rzm72exRS19J+lcxHStqBYpZ7M2+ZiAPJA1Xc3eB7FHfwgRu2jrjRomgM43PLBo6T8oM dOZ4P5RlGBmn4eCwbKR6q3Oe9W742O20/Aw0CmXGkXS1nDtT2pBoGPFH9w1bg5iLiBDg kwtU7sFUtgEzxxoA4XTWe5nCPDK7NK/eJOktYRydNHJUtMsLFftUxWozcAmZcp+oYlHp t+cQ== X-Received: by 10.236.117.73 with SMTP id i49mr38750532yhh.26.1356987710775; Mon, 31 Dec 2012 13:01:50 -0800 (PST) Received: from [192.168.1.136] (OL144-145.fibertel.com.ar. [24.232.145.144]) by mx.google.com with ESMTPS id s30sm39355014yhl.21.2012.12.31.13.01.49 (version=SSLv3 cipher=OTHER); Mon, 31 Dec 2012 13:01:49 -0800 (PST) Message-ID: <50E1FD79.5080505@anue.biz> Date: Mon, 31 Dec 2012 18:02:49 -0300 From: =?ISO-8859-1?Q?Fabi=E1n_Ezequiel_Gallina?= User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/17.0 Thunderbird/17.0 MIME-Version: 1.0 To: control@debbugs.gnu.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Gm-Message-State: ALoCoQlYNp6ywtku8KKSprIFjcI0HHqdUtfFsHB8W/Do9haLBUYx4PVfxaBJZKMJpAwutk91RZwb X-Spam-Score: 2.1 (++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has identified this incoming email as possible spam. The original message has been attached to this so you can view it (if it isn't spam) or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: close #13182 [...] Content analysis details: (2.1 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.8 BAYES_50 BODY: Bayes spam probability is 40 to 60% [score: 0.5000] -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at http://www.dnswl.org/, low trust [209.85.213.48 listed in list.dnswl.org] 1.8 MISSING_SUBJECT Missing Subject: header 0.2 NO_SUBJECT Extra score for no subject X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: 2.1 (++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has identified this incoming email as possible spam. The original message has been attached to this so you can view it (if it isn't spam) or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: close #13182 [...] Content analysis details: (2.1 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at http://www.dnswl.org/, low trust [209.85.213.48 listed in list.dnswl.org] 0.8 BAYES_50 BODY: Bayes spam probability is 40 to 60% [score: 0.4219] 1.8 MISSING_SUBJECT Missing Subject: header 0.2 NO_SUBJECT Extra score for no subject 0.0 TVD_SPACE_RATIO TVD_SPACE_RATIO close #13182 From debbugs-submit-bounces@debbugs.gnu.org Mon Dec 31 16:06:07 2012 Received: (at 13182) by debbugs.gnu.org; 31 Dec 2012 21:06:07 +0000 Received: from localhost ([127.0.0.1]:38398 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1TpmYh-0005H5-3Z for submit@debbugs.gnu.org; Mon, 31 Dec 2012 16:06:07 -0500 Received: from mail-yh0-f48.google.com ([209.85.213.48]:48757) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1TpmYe-0005Gy-IC for 13182@debbugs.gnu.org; Mon, 31 Dec 2012 16:06:04 -0500 Received: by mail-yh0-f48.google.com with SMTP id q46so2056119yhf.7 for <13182@debbugs.gnu.org>; Mon, 31 Dec 2012 13:04:52 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received:message-id:date:from:user-agent:mime-version:to:subject :content-type:content-transfer-encoding:x-gm-message-state; bh=OWoA1llJ9Oo5z8QYHqcxvcHrn5+XZKy7ROtxz+olePs=; b=iFyrklSS+7G8+IR7+CQPvHn/IvvmgWZpEgFGUfKJZmchFJg1xUPT62DZJWz1XNvrRh Iy3uvqQ/EWL0h8eltLwdalXu2XCpCLrmMSvXIWCTdJ7/Hw2xdlo27F6yKyx81kxRUQHc wxsmh4WXiTNPLUkJDp1Cm409xg7mtDq1Hwv4MA48gPBus8PNK1AGMOoRCg76L+CSi8Nv +PjO1skWPaKf4/vU54AI6NyFwhcwPLvlzenjCZRDkGwlq2741xM089mUpitA2If4QtQg lC8TbqdcZCLHDS9PFFwSYGfTrXOU7vzl/r+Gei26bcij6O0sIK9VD7VdGgUvsycsD+4t ykUQ== X-Received: by 10.236.84.8 with SMTP id r8mr39949968yhe.40.1356987892893; Mon, 31 Dec 2012 13:04:52 -0800 (PST) Received: from [192.168.1.136] (OL144-145.fibertel.com.ar. [24.232.145.144]) by mx.google.com with ESMTPS id n12sm34341187ani.7.2012.12.31.13.04.51 (version=SSLv3 cipher=OTHER); Mon, 31 Dec 2012 13:04:52 -0800 (PST) Message-ID: <50E1FE30.5050308@anue.biz> Date: Mon, 31 Dec 2012 18:05:52 -0300 From: =?ISO-8859-1?Q?Fabi=E1n_Ezequiel_Gallina?= User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/17.0 Thunderbird/17.0 MIME-Version: 1.0 To: 13182@debbugs.gnu.org Subject: [PATCH] long delays in python-mode buffer parsing Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Gm-Message-State: ALoCoQkhaBpHfQD1Qvbv6vKCbzyYWNuC1HHXzs0urudu4ljcjz7DmaI6NVIzoZCnGDeIajGdNaFG X-Spam-Score: 0.1 (/) X-Debbugs-Envelope-To: 13182 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -2.6 (--) s/defun/statement/ From unknown Mon Jun 23 07:48:50 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Tue, 29 Jan 2013 12:24:04 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator