From debbugs-submit-bounces@debbugs.gnu.org Tue Jan 29 12:19:11 2013 Received: (at submit) by debbugs.gnu.org; 29 Jan 2013 17:19:11 +0000 Received: from localhost ([127.0.0.1]:54603 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1U0Epy-000094-NF for submit@debbugs.gnu.org; Tue, 29 Jan 2013 12:19:11 -0500 Received: from eggs.gnu.org ([208.118.235.92]:36182) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1U0Eo8-000062-Br for submit@debbugs.gnu.org; Tue, 29 Jan 2013 12:17:17 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1U0Enb-0004Br-54 for submit@debbugs.gnu.org; Tue, 29 Jan 2013 12:16:44 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-102.6 required=5.0 tests=BAYES_00,FREEMAIL_FROM, HTML_MESSAGE,RCVD_IN_DNSWL_LOW,T_DKIM_INVALID,USER_IN_WHITELIST autolearn=unavailable version=3.3.2 Received: from lists.gnu.org ([208.118.235.17]:40179) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U0EBv-0001RV-JU for submit@debbugs.gnu.org; Tue, 29 Jan 2013 11:37:47 -0500 Received: from eggs.gnu.org ([208.118.235.92]:36885) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U0EBi-0000p9-Rc for bug-gnu-emacs@gnu.org; Tue, 29 Jan 2013 11:37:47 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1U0EBg-0001MH-2O for bug-gnu-emacs@gnu.org; Tue, 29 Jan 2013 11:37:34 -0500 Received: from mail-qc0-f180.google.com ([209.85.216.180]:46889) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U0EBf-0001M5-Qs for bug-gnu-emacs@gnu.org; Tue, 29 Jan 2013 11:37:31 -0500 Received: by mail-qc0-f180.google.com with SMTP id v28so270902qcm.39 for ; Tue, 29 Jan 2013 08:37:31 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:date:message-id:subject:from:to :content-type; bh=YE66UWLpqNggl0x4IW2Muy3aYZpTu8pkR60qstngSMs=; b=HTD9AcHgw/IFokVjB8n3JmOhJRCuSVGHWhcvP+XKaGeXEZyeJkguio5gi5L0i8ycLr bC1iFGTrVRxxvxy0wDTdRyNgk0atfdYejdz68Mvx1eGihLTeF1K9lttGm0zSmTlgQV2Z dmgSsW69+ExDgdeiIpE2/7W2j//vEZj02pnQD+bu0FUVlCoN1ZRoLT5VM7slKLngKuX/ 3Bqkk9Gq2gL5OzZJejfRFmct432S8f8utyKBaNa+ikMCIF8B4yBsKYql/m8KIJNHS3fP GeVbOQjlhK12zVSSmYl2dXch6L1avAHWpPLFaB+pRd41BNxBXBRT2/PDu9xo1RHXeeQC sRwA== MIME-Version: 1.0 X-Received: by 10.224.33.140 with SMTP id h12mr1789593qad.73.1359477451219; Tue, 29 Jan 2013 08:37:31 -0800 (PST) Received: by 10.49.58.226 with HTTP; Tue, 29 Jan 2013 08:37:30 -0800 (PST) Date: Tue, 29 Jan 2013 17:37:30 +0100 Message-ID: Subject: pdbtrack doesn't jump to the source file location on the first exception/set_trace() call From: Greg Novak To: bug-gnu-emacs@gnu.org Content-Type: multipart/mixed; boundary=20cf3074d2228f62e504d47002ce X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x [fuzzy] X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 208.118.235.17 X-Spam-Score: -3.4 (---) X-Debbugs-Envelope-To: submit X-Mailman-Approved-At: Tue, 29 Jan 2013 12:19:10 -0500 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: -6.1 (------) --20cf3074d2228f62e504d47002ce Content-Type: multipart/alternative; boundary=20cf3074d2228f62e104d47002cc --20cf3074d2228f62e104d47002cc Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable I have attached a patch to fix this problem. I am using the latest stable version of emacs 24.2.1, but with the version of python.el written by Fabi=E1n E. Gallina from the latest development ema= cs sources. When running python or ipython under Emacs, when either an exception or a call to pdb.set_trace() is encountered, pdbtrack doesn't immediately jump to the appropriate line of the offending source file. In the case of pdb.set_trace(), this is because a few extra lines of information are printed involving the arguments of the present function (see below), and the implementation of pdbtrack in python.el requires the stack information to be on the first or second line of the most recent comint output. If I type 'up', then 'down' to move between the stack frames, pdbtrack finds the stack frame info and jumps to the source file as desired. When using IPython, ipdb generally prints an entire stack trace, so it's necessary to find the line corresponding to the _last_ stack frame printed. I have attached a context diff of the change required to fix this behavior so that pdbtrack immediately jumps to the desired source file, rather than requiring me to type 'up' then 'down' to move between stack frames so that one and only one stack frame is printed. Below is an example of extra information printed when python encounters a call to pdb.set_trace(). pdbtrack requires the stack frame to be on the first or second line, but in this case the first and second lines are '1.1' and '--Return--' (The code in question is not printing anything to stdout)= . >>> mg.jey() 1.1 --Return-- > /Users/novak/Projects/gsnpy/mg.py(17)gsn()->None -> pdb.set_trace() (Pdb) up --20cf3074d2228f62e104d47002cc Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable
I have attached a patch to fix this problem. =A0

I am using the latest stable version of emacs 24= .2.1, but with the version of python.el written by Fabi=E1n E. Gallina from= the latest development emacs sources.

When running python or ipython under Emacs, when either= an exception or a call to pdb.set_trace() is encountered, pdbtrack doesn&#= 39;t immediately jump to the appropriate line of the offending source file.= In the case of pdb.set_trace(), this is because a few extra lines of infor= mation are printed involving the arguments of the present function (see bel= ow), and the implementation of pdbtrack in python.el requires the stack inf= ormation to be on the first or second line of the most recent comint output= . If I type 'up', then 'down' to move between the stack fra= mes, pdbtrack finds the stack frame info and jumps to the source file as de= sired.

When using IPython, ipdb generally prints an entire sta= ck trace, so it's necessary to find the line corresponding to the _last= _ stack frame printed.

I have attached a context d= iff of the change required to fix this behavior so that pdbtrack immediatel= y jumps to the desired source file, rather than requiring me to type 'u= p' then 'down' to move between stack frames so that one and onl= y one stack frame is printed.

Below is an example of extra information printed = when python encounters a call to pdb.set_trace(). =A0pdbtrack requires the = stack frame to be on the first or second line, but in this case the first a= nd second lines are '1.1' and '--Return--' =A0(The code in = question is not printing anything to stdout).

>>> mg.jey()
1.1
--Return--
> /Users/novak/Projects/gsnpy/mg.py(17)gsn()->= None
-> pdb.set_trace()
(Pdb) up


--20cf3074d2228f62e104d47002cc-- --20cf3074d2228f62e504d47002ce Content-Type: application/octet-stream; name="python.el.diff" Content-Disposition: attachment; filename="python.el.diff" Content-Transfer-Encoding: base64 X-Attachment-Id: f_hcj9rcd20 KioqIHB5dGhvbi5lbC5vcmlnCTIwMTMtMDEtMjkgMTM6MTM6NDkuMDAwMDAwMDAwICswMTAwCi0t LSBweXRob24uZWwJMjAxMy0wMS0yOSAxNzowOTozNC4wMDAwMDAwMDAgKzAxMDAKKioqKioqKioq KioqKioqCioqKiAyMzIzLDIzMzcgKioqKgogICAgICAgICAgICAgKGZpbGUtbmFtZQogICAgICAg ICAgICAgICh3aXRoLXRlbXAtYnVmZmVyCiAgICAgICAgICAgICAgICAoaW5zZXJ0IGZ1bGwtb3V0 cHV0KQohICAgICAgICAgICAgICAgKGdvdG8tY2hhciAocG9pbnQtbWluKSkKISAgICAgICAgICAg ICAgIDs7IE9LLCB0aGlzIHN1Y2tlZCBidXQgbm93IGl0IGJlY2FtZSBhIGNvb2wgaGFjay4gVGhl CiEgICAgICAgICAgICAgICA7OyBzdGFja3RyYWNlIGluZm9ybWF0aW9uIG5vcm1hbGx5IGlzIG9u IHRoZSBmaXJzdCBsaW5lCiEgICAgICAgICAgICAgICA7OyBidXQgaW4gc29tZSBjYXNlcyAobGlr ZSB3aGVuIGRvaW5nIGEgc3RlcC1pbikgaXQgaXMKISAgICAgICAgICAgICAgIDs7IG9uIHRoZSBz ZWNvbmQuCiEgICAgICAgICAgICAgICAod2hlbiAob3IgKGxvb2tpbmctYXQgcHl0aG9uLXBkYnRy YWNrLXN0YWNrdHJhY2UtaW5mby1yZWdleHApCiEgICAgICAgICAgICAgICAgICAgICAgICAgKGFu ZAohICAgICAgICAgICAgICAgICAgICAgICAgICAoZm9yd2FyZC1saW5lKQohICAgICAgICAgICAg ICAgICAgICAgICAgICAobG9va2luZy1hdCBweXRob24tcGRidHJhY2stc3RhY2t0cmFjZS1pbmZv LXJlZ2V4cCkpKQogICAgICAgICAgICAgICAgICAoc2V0cSBsaW5lLW51bWJlciAoc3RyaW5nLXRv LW51bWJlcgogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKG1hdGNoLXN0cmlu Zy1uby1wcm9wZXJ0aWVzIDIpKSkKICAgICAgICAgICAgICAgICAgKG1hdGNoLXN0cmluZy1uby1w cm9wZXJ0aWVzIDEpKSkpKQotLS0gMjMwMCwyMzE2IC0tLS0KICAgICAgICAgICAgIChmaWxlLW5h bWUKICAgICAgICAgICAgICAod2l0aC10ZW1wLWJ1ZmZlcgogICAgICAgICAgICAgICAgKGluc2Vy dCBmdWxsLW91dHB1dCkKISAgICAgICAgICAgICAgIDs7IFdoZW4gdGhlIGRlYnVnZ2VyIGVuY291 bnRlcnMgYSBwZGIuc2V0X3RyYWNlKCkKISAgICAgICAgICAgICAgIDs7IGNvbW1hbmQsIGl0IHBy aW50cyBhIHNpbmdsZSBzdGFjayBmcmFtZS4gIFNvbWV0aW1lcwohICAgICAgICAgICAgICAgOzsg aXQgcHJpbnRzIGEgYml0IG9mIGV4dHJhIGluZm9ybWF0aW9uIGFib3V0IHRoZQohICAgICAgICAg ICAgICAgOzsgYXJndW1lbnRzIG9mIHRoZSBwcmVzZW50IGZ1bmN0aW9uLiAgV2hlbiBpcGRiCiEg ICAgICAgICAgICAgICA7OyBlbmNvdW50ZXJzIGFuIGV4Y2VwdGlvbiwgaXQgcHJpbnRzIHRoZSBf ZW50aXJlXyBzdGFjawohICAgICAgICAgICAgICAgOzsgdHJhY2UuICBUbyBoYW5kbGUgYWxsIG9m IHRoZXNlIGNhc2VzLCB3ZSB3YW50IHRvIGZpbmQKISAgICAgICAgICAgICAgIDs7IHRoZSBfbGFz dF8gc3RhY2sgZnJhbWUgcHJpbnRlZCBpbiB0aGUgbW9zdCByZWNlbnQKISAgICAgICAgICAgICAg IDs7IGJhdGNoIG9mIG91dHB1dCwgdGhlbiBqdW1wIHRvIHRoZSBjb3Jyc3BvbmRpbmcKISAgICAg ICAgICAgICAgIDs7IGZpbGUvbGluZSBudW1iZXIuCiEgICAgICAgICAgICAgICAoZ290by1jaGFy IChwb2ludC1tYXgpKQohICAgICAgICAgICAgICAgKHdoZW4gKHJlLXNlYXJjaC1iYWNrd2FyZCBw eXRob24tcGRidHJhY2stc3RhY2t0cmFjZS1pbmZvLXJlZ2V4cCBuaWwgdCkKICAgICAgICAgICAg ICAgICAgKHNldHEgbGluZS1udW1iZXIgKHN0cmluZy10by1udW1iZXIKICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgIChtYXRjaC1zdHJpbmctbm8tcHJvcGVydGllcyAyKSkpCiAg ICAgICAgICAgICAgICAgIChtYXRjaC1zdHJpbmctbm8tcHJvcGVydGllcyAxKSkpKSkK --20cf3074d2228f62e504d47002ce-- From debbugs-submit-bounces@debbugs.gnu.org Sun Sep 08 22:51:48 2019 Received: (at control) by debbugs.gnu.org; 9 Sep 2019 02:51:48 +0000 Received: from localhost ([127.0.0.1]:39406 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1i79mO-0001sN-BW for submit@debbugs.gnu.org; Sun, 08 Sep 2019 22:51:48 -0400 Received: from mail-pf1-f169.google.com ([209.85.210.169]:39598) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1i79mL-0001s9-QW for control@debbugs.gnu.org; Sun, 08 Sep 2019 22:51:46 -0400 Received: by mail-pf1-f169.google.com with SMTP id s12so8208170pfe.6 for ; Sun, 08 Sep 2019 19:51:45 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=8PkxVC0vxjHaDkjClsvsq34oHmGR+ne4nfrI88kQfBI=; b=UQvb/18CXmWbRrC3xJi2X68FC2r+s5TFOkg8OcSaW22P3dLrR/P9G7xVxuM2LZEo60 RaJ2crQXrRqWCjggrKkq51BQYTzGspWC9VsNnOnGKqmFNjcoQpXdlScGK4LWzFu+j2Q+ soIJehHTjzyoyQSbc+SQbOygfzjN5zwPggCvjHKyeNaRBXXQIQ+JRFIZJEtzkSUJBKrF W29Ba7HYdVC6d0jHAsreFaImut7Q3XYndi/Mhes5F8TX7/qXF1bSEEPpq6SaN9ta/hji UfZA3GfQ1IJ6Gn+hqOHfmGu6kDVl91o0Gj+cdQBXhN+V8h2PX2W87dIlZhrQ4q8k0vKo eZLg== X-Gm-Message-State: APjAAAWnCsXjPtq8GXK3BoVGsBB6RO6dzefschIkA11PfmhGWWLgOSdo TllRtczAsoyPH9r2rHOj8w+GSWTwpgf4PP44F2HXQ/yYbMc= X-Google-Smtp-Source: APXvYqx2GsT6Q8BQ3w4DRKVonJu6PS3opAVCvnKMF51o/UuKVmt1bF7kaqVhkMQIuI2EnTy9UmJaMWP0UxFHW6v5B7o= X-Received: by 2002:a62:15c7:: with SMTP id 190mr24468692pfv.107.1567997499825; Sun, 08 Sep 2019 19:51:39 -0700 (PDT) MIME-Version: 1.0 From: Stefan Kangas Date: Mon, 9 Sep 2019 04:51:27 +0200 Message-ID: Subject: To: control@debbugs.gnu.org Content-Type: text/plain; charset="UTF-8" X-Spam-Score: 2.0 (++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: tags 13586 + patch quit Content analysis details: (2.0 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (stefankangas[at]gmail.com) -0.0 SPF_PASS SPF: sender matches SPF record 0.0 HEADER_FROM_DIFFERENT_DOMAINS From and EnvelopeFrom 2nd level mail domains are different -0.0 RCVD_IN_DNSWL_NONE RBL: Sender listed at https://www.dnswl.org/, no trust [209.85.210.169 listed in list.dnswl.org] 0.0 FREEMAIL_FORGED_FROMDOMAIN 2nd level domains in From and EnvelopeFrom freemail headers are different 2.0 BLANK_SUBJECT Subject is present but empty X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 1.0 (+) tags 13586 + patch quit From debbugs-submit-bounces@debbugs.gnu.org Fri Aug 14 08:30:50 2020 Received: (at 13586) by debbugs.gnu.org; 14 Aug 2020 12:30:50 +0000 Received: from localhost ([127.0.0.1]:52097 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1k6YrC-0001k3-6A for submit@debbugs.gnu.org; Fri, 14 Aug 2020 08:30:50 -0400 Received: from quimby.gnus.org ([95.216.78.240]:40954) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1k6YrA-0001jl-3O for 13586@debbugs.gnu.org; Fri, 14 Aug 2020 08:30:48 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Content-Transfer-Encoding:Content-Type:MIME-Version:Message-ID :In-Reply-To:Date:References:Subject:Cc:To:From:Sender:Reply-To:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=OF5D3Uy7lYxzirDRak/ZRfIDhfsOiylLKcTS64ZFPlU=; b=cvsMPhLmKzauZ6iQIPSnuFUzmx I34Ln53q7DIkmBLp4AwHmCi9ZNVZwweD9o2WhtJHxxFrNaduFlTumGb0a9ZN4gAC8RXRqZ84Seccz NohpfnAqQJ3X8VVklz0rkZHOcnLiXrjm1hes8FoJZdPKmOhNYsn1akl1M6yeERmRR4Ww=; Received: from cm-84.212.202.86.getinternet.no ([84.212.202.86] helo=xo) by quimby with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1k6Yr0-0001oO-Md; Fri, 14 Aug 2020 14:30:41 +0200 From: Lars Ingebrigtsen To: Greg Novak Subject: Re: bug#13586: pdbtrack doesn't jump to the source file location on the first exception/set_trace() call References: Date: Fri, 14 Aug 2020 14:30:35 +0200 In-Reply-To: (Greg Novak's message of "Tue, 29 Jan 2013 17:37:30 +0100") Message-ID: <87v9hl8l5g.fsf@gnus.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Report: Spam detection software, running on the system "quimby.gnus.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see @@CONTACT_ADDRESS@@ for details. Content preview: Greg Novak writes: > ! ;; When the debugger encounters a pdb.set_trace() > ! ; ; command, it prints a single stack frame. Sometimes > ! ;; it prints a bit of extra information about the > ! ;; arguments of the present fu [...] Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 13586 Cc: 13586@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Greg Novak writes: > ! ;; When the debugger encounters a pdb.set_trace() > ! ;; command, it prints a single stack frame. Sometimes > ! ;; it prints a bit of extra information about the > ! ;; arguments of the present function. When ipdb > ! ;; encounters an exception, it prints the _entire_ stack > ! ;; trace. To handle all of these cases, we want to find > ! ;; the _last_ stack frame printed in the most recent > ! ;; batch of output, then jump to the corrsponding > ! ;; file/line number. > ! (goto-char (point-max)) > ! (when (re-search-backward python-pdbtrack-stacktrace-info= -regexp nil t) > (setq line-number (string-to-number > (match-string-no-properties 2))) > (match-string-no-properties 1))))) commit 6ff930c3d206417e4cec9429fa5d71bb5c9af541 Author: Fabi=C3=A1n Ezequiel Gallina AuthorDate: Wed Jan 30 12:02:58 2013 -0300 Commit: Fabi=C3=A1n Ezequiel Gallina CommitDate: Wed Jan 30 12:02:58 2013 -0300 * progmodes/python.el (python-pdbtrack-comint-output-filter-function): Enhancements on stacktrace detection. (thanks @gnovak) I looks like this was applied (with some changes) at the time, but this bug report wasn't closed, so I'm doing that now. --=20 (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Fri Aug 14 08:30:56 2020 Received: (at control) by debbugs.gnu.org; 14 Aug 2020 12:30:56 +0000 Received: from localhost ([127.0.0.1]:52100 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1k6YrI-0001kM-Dr for submit@debbugs.gnu.org; Fri, 14 Aug 2020 08:30:56 -0400 Received: from quimby.gnus.org ([95.216.78.240]:40968) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1k6YrG-0001k1-SI for control@debbugs.gnu.org; Fri, 14 Aug 2020 08:30:55 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Subject:From:To:Message-Id:Date:Sender:Reply-To:Cc: MIME-Version:Content-Type:Content-Transfer-Encoding:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:In-Reply-To:References:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=g80V4TsTji8Xu0kdWDGxZsPuzgEZLTScQhdnol1MTF8=; b=BhfOEoG9Lz2LJoQtw65SujGCpw c2R3DkdH2HgBynYdSsNjecc5qomF/owYW1Ia9V9KdUgOKhQoqwiDJUG5oYKlAdCeM3+9vOg86dF4o l/L+fPNjtKnAQD+u0NrRyCm9CeiIw5nMAl9czYYJx27UeaddNbsk9FehbUOG52ED+Ggg=; Received: from cm-84.212.202.86.getinternet.no ([84.212.202.86] helo=xo) by quimby with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1k6Yr9-0001oX-6V for control@debbugs.gnu.org; Fri, 14 Aug 2020 14:30:49 +0200 Date: Fri, 14 Aug 2020 14:30:46 +0200 Message-Id: <87tux58l55.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #13586 X-Spam-Report: Spam detection software, running on the system "quimby.gnus.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see @@CONTACT_ADDRESS@@ for details. Content preview: close 13586 quit Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) close 13586 quit From unknown Sat Aug 16 14:25:42 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sat, 12 Sep 2020 11:24:09 +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