From debbugs-submit-bounces@debbugs.gnu.org Sat Feb 27 13:09:51 2021 Received: (at submit) by debbugs.gnu.org; 27 Feb 2021 18:09:52 +0000 Received: from localhost ([127.0.0.1]:45316 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lG42J-0003Bm-GD for submit@debbugs.gnu.org; Sat, 27 Feb 2021 13:09:51 -0500 Received: from lists.gnu.org ([209.51.188.17]:34306) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lG3xo-00035X-4N for submit@debbugs.gnu.org; Sat, 27 Feb 2021 13:05:13 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:35998) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lG3xn-0007Fv-Vs for bug-gnu-emacs@gnu.org; Sat, 27 Feb 2021 13:05:12 -0500 Received: from mout02.posteo.de ([185.67.36.66]:47485) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lG3xl-0003Rd-BT for bug-gnu-emacs@gnu.org; Sat, 27 Feb 2021 13:05:11 -0500 Received: from submission (posteo.de [89.146.220.130]) by mout02.posteo.de (Postfix) with ESMTPS id 0349B2400FD for ; Sat, 27 Feb 2021 19:05:05 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.de; s=2017; t=1614449106; bh=RLpgj04L9GVMIWFbP0X1pkwo61BwuPFgT4uSK0peL1E=; h=From:To:Subject:Date:From; b=Dw0RKnTAKyRsvD/HSsYZiSDn0YtWcAgegfbb1ILaEPUvSz0HohY3fx+iDEtolKTJQ jZE5c8Z+hB01H2/VVgvlVnubvVj5GNpgEQv2kb0nQC+Zl9h1MWesXt0fD8c2q8ueZV l8me3BaXuifgTYnIwks9SElljLed3npyET8Afn0eapNeyY627rd/ylQWltlqxumLGZ r33p3lHKD7GGN+lPBuLYExWrp/Gq39mr/XIiUiwZjpDURGfh5I3ztvuZQJpSXgoTjb 9yJ9bp2Nciowrn9V+v1ZiacLUDFsPGKuV6sbFo3KcT5komIumZE3/+O2kp0Uv52IQ8 Fx6Ni10rFqf3A== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4DnvZ91fDtz9rxX for ; Sat, 27 Feb 2021 19:05:05 +0100 (CET) User-agent: mu4e 1.5.7; emacs 27.1 From: Martin Puttke To: bug-gnu-emacs@gnu.org Subject: update python grammar Date: Sat, 27 Feb 2021 19:04:53 +0100 Message-ID: <87im6d5quy.fsf@posteo.de> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Received-SPF: pass client-ip=185.67.36.66; envelope-from=martinstefanputtke@posteo.de; helo=mout02.posteo.de X-Spam_score_int: -43 X-Spam_score: -4.4 X-Spam_bar: ---- X-Spam_report: (-4.4 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_MED=-2.3, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: submit X-Mailman-Approved-At: Sat, 27 Feb 2021 13:09:50 -0500 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: -2.3 (--) --=-=-= Content-Type: text/plain; format=flowed Hi out there, I made some fixes to enhance the python grammar file to enable it to understand python type hints and have non-trivial base classes. Please feel free to include my changes into emacs. please find my patches attached. All the best Martin --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0001-add-python-grammar-for-type-hints-in-variable-defini.patch >From b5eaf8174267ac466ad3d8be63bae4448f476d16 Mon Sep 17 00:00:00 2001 From: Kapuze Martin Date: Wed, 18 Nov 2020 17:54:22 +0100 Subject: [PATCH 1/3] add python grammar for type hints in variable definitions --- admin/grammars/python.wy | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/admin/grammars/python.wy b/admin/grammars/python.wy index aaa25ced20..b7254e2533 100644 --- a/admin/grammars/python.wy +++ b/admin/grammars/python.wy @@ -1140,7 +1140,7 @@ fpdef_opt_test ;; fpdef: NAME | '(' fplist ')' fpdef - : NAME + : NAME type_hint (VARIABLE-TAG $1 nil nil) ;; Below breaks the parser. Don't know why, but my guess is that ;; LPAREN/RPAREN clashes with the ones in function_parameters. @@ -1160,6 +1160,15 @@ fpdef ;; | fpdef_list COMMA fpdef ;; ; +type_hint + : ;;EMPTY + | COLON type + ; + +type + : dotted_name + ; + ;; ['=' test] eq_test_opt : ;;EMPTY -- 2.25.1 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-add-python-grammar-for-type-hints-for-function-retur.patch >From 3d8c711acc63bb2e61dfeccb73223ff3bf29b67e Mon Sep 17 00:00:00 2001 From: Kapuze Martin Date: Wed, 18 Nov 2020 18:11:36 +0100 Subject: [PATCH 2/3] add python grammar for type hints for function return value --- admin/grammars/python.wy | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/admin/grammars/python.wy b/admin/grammars/python.wy index b7254e2533..cc5093b0b7 100644 --- a/admin/grammars/python.wy +++ b/admin/grammars/python.wy @@ -184,6 +184,7 @@ %token ASSIGN "=" %token BACKQUOTE "`" %token AT "@" +%token FOLLOWS "->" ;; ----------------- @@ -808,12 +809,17 @@ decorators ;; funcdef: [decorators] 'def' NAME parameters ':' suite funcdef - : DEF NAME function_parameter_list COLON suite + : DEF NAME function_parameter_list return_type_hint COLON suite (wisent-python-reconstitute-function-tag - (FUNCTION-TAG $2 nil $3) $5) - | decorators DEF NAME function_parameter_list COLON suite + (FUNCTION-TAG $2 nil $3) $6) + | decorators DEF NAME function_parameter_list return_type_hint COLON suite (wisent-python-reconstitute-function-tag - (FUNCTION-TAG $3 nil $4 :decorators $1) $6) + (FUNCTION-TAG $3 nil $4 :decorators $1) $7) + ; + +return_type_hint + : ;;EMPTY + | FOLLOWS type ; function_parameter_list -- 2.25.1 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0003-generalize-type-definition-and-apply-it-to-parent-cl.patch >From cf4cd6d4ca1debc6f0b82aa5c9a03a78730980b1 Mon Sep 17 00:00:00 2001 From: Kapuze Martin Date: Mon, 23 Nov 2020 21:56:09 +0100 Subject: [PATCH 3/3] generalize type definition and apply it to parent classes --- admin/grammars/python.wy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/admin/grammars/python.wy b/admin/grammars/python.wy index cc5093b0b7..bb3d96d703 100644 --- a/admin/grammars/python.wy +++ b/admin/grammars/python.wy @@ -893,7 +893,7 @@ paren_classes ;; parser can parse general expressions, I don't see much benefit in ;; generating a string of expression as base class "name". paren_class - : dotted_name + : type ; ;;;**************************************************************************** @@ -1172,7 +1172,7 @@ type_hint ; type - : dotted_name + : test ; ;; ['=' test] -- 2.25.1 --=-=-= Content-Type: text/plain; format=flowed -- Composed with Spacemacs (www.spacemacs.org) --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Mon Mar 01 07:21:12 2021 Received: (at 46817) by debbugs.gnu.org; 1 Mar 2021 12:21:13 +0000 Received: from localhost ([127.0.0.1]:48358 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lGhY0-0001x5-Mt for submit@debbugs.gnu.org; Mon, 01 Mar 2021 07:21:12 -0500 Received: from quimby.gnus.org ([95.216.78.240]:41626) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lGhXz-0001wp-8Q for 46817@debbugs.gnu.org; Mon, 01 Mar 2021 07:21:11 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Content-Type:MIME-Version:Message-ID:In-Reply-To:Date: References:Subject:Cc:To:From:Resent-Message-ID:Resent-Date:Resent-From: Resent-To:Sender:Reply-To:Content-Transfer-Encoding:Content-ID: Content-Description:Resent-Sender:Resent-Cc:List-Id:List-Help: List-Unsubscribe:List-Subscribe:List-Post:List-Owner:List-Archive; bh=wtgdQHKj5qSrA0PLOg71SWdfBUmQS2Ld6SLOWkZaT2A=; b=M+P6zM3YZ7zakbtXA7uhHam6Oz dWa6w33vDrza6AR4MC0UsYNyq7/r3+bfHVDl7exxJjA4K83k9SrkesA2iIvsk7aMvYXI5Qlb6GO3Q QdYrxeg+h8Ye0H/Hl9CG5JGljMPA+a2/np3gpYMLCOi6qzuI5UkDiUTp/JihHdl+b2cg=; Received: from cm-84.212.220.105.getinternet.no ([84.212.220.105] helo=xo) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1lGhXr-0001iR-9P for 46817@debbugs.gnu.org; Mon, 01 Mar 2021 13:21:05 +0100 Resent-X-Now-Playing: Siouxsie and the Banshees's _Join Hands_: "Love in a Void" Resent-To: 46817@debbugs.gnu.org Resent-From: Lars Ingebrigtsen Resent-Date: Mon, 01 Mar 2021 13:21:02 +0100 Resent-Message-ID: <87k0qr9ia9.fsf@gnus.org> X-From-Line: nobody Sun Feb 28 15:23:03 2021 From: Lars Ingebrigtsen To: Martin Puttke Subject: Re: bug#46817: update python grammar References: <87im6d5quy.fsf@posteo.de> X-Now-Playing: Boris's _Love_: "Evol" Date: Sun, 28 Feb 2021 15:22:59 +0100 In-Reply-To: <87im6d5quy.fsf@posteo.de> (Martin Puttke's message of "Sat, 27 Feb 2021 19:04:53 +0100") Message-ID: <87czwkmfuk.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 Lines: 17 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: Martin Puttke writes: > I made some fixes to enhance the python grammar file to enable it to > understand python type hints and have non-trivial base classes. Please > feel free to include my changes into emacs. 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: 46817 Cc: 46817@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 (-) Martin Puttke writes: > I made some fixes to enhance the python grammar file to enable it to > understand python type hints and have non-trivial base classes. Please > feel free to include my changes into emacs. Thanks; I'm not a Python or Wisent expert, but if I read the patch correctly, it looks good to me, and I've applied your patch to Emacs 28. This change was small enough to apply without assigning copyright to the FSF, but for future patches you want to submit, it might make sense to get the paperwork started now, so that subsequent patches can be applied speedily. Would you be willing to sign such paperwork? -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Mon Mar 01 07:21:26 2021 Received: (at control) by debbugs.gnu.org; 1 Mar 2021 12:21:26 +0000 Received: from localhost ([127.0.0.1]:48361 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lGhYD-0001xX-UV for submit@debbugs.gnu.org; Mon, 01 Mar 2021 07:21:26 -0500 Received: from quimby.gnus.org ([95.216.78.240]:41638) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lGhYB-0001xI-RP for control@debbugs.gnu.org; Mon, 01 Mar 2021 07:21:24 -0500 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=Iac6VLWMXVONAaLlCHPxKaz/bAWk8GTC3m3+IdqLqbI=; b=qY387eHu/rIwSMUZTbm4V4Ml0d IK0uFEYrwpARKWaOuuMJ8kFOzWqM/5+NrL43jh1owt7SL0+5UeAcNesGKp1v8eol44V94QcKUpqLi LlvaVvTW/2uZ8q6X38ps1oIZqxr4QEaALMNTpyCH+IjogJUKTldC9j05z9gHKc2/wJ1E=; Received: from cm-84.212.220.105.getinternet.no ([84.212.220.105] helo=xo) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1lGhY4-0001iX-9a for control@debbugs.gnu.org; Mon, 01 Mar 2021 13:21:18 +0100 Date: Mon, 01 Mar 2021 13:21:15 +0100 Message-Id: <87h7lv9i9w.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #46817 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: tags 46817 fixed close 46817 28.1 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 (-) tags 46817 fixed close 46817 28.1 quit From debbugs-submit-bounces@debbugs.gnu.org Tue Mar 02 13:28:01 2021 Received: (at 46817) by debbugs.gnu.org; 2 Mar 2021 18:28:01 +0000 Received: from localhost ([127.0.0.1]:54156 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lH9kW-0007oO-Fb for submit@debbugs.gnu.org; Tue, 02 Mar 2021 13:28:01 -0500 Received: from mout01.posteo.de ([185.67.36.65]:43989) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lH9SI-0007MX-94 for 46817@debbugs.gnu.org; Tue, 02 Mar 2021 13:09:12 -0500 Received: from submission (posteo.de [89.146.220.130]) by mout01.posteo.de (Postfix) with ESMTPS id 9AFB716005F for <46817@debbugs.gnu.org>; Tue, 2 Mar 2021 19:09:03 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.de; s=2017; t=1614708543; bh=V6/5Yemia/k2vnrCyiDPPim+0fwOfkpwxnsRfbvA6/g=; h=From:To:Cc:Subject:Date:From; b=r0QhEvM9JnTu2S8nURwgt5ecuF+THEUQtZdzfAtjVapKsE2S+MItyloE5DeX9VwBW zYUaOWVylzk5XaISTnwFC7qIpzWdjzqD9zqVu3yORG5QZEYlpPmoWJOYKAsT4MdtP8 tSzLYKXv8WEc1HM4cAefEhyi+Kb1OhVOjdvxVqlZ3gKYMX7DDrP+e/kJUIbGmdhAmM DQUu2y26rWyN0f+iJRAUWfOedFnpetcMf5M4fv3k9CNBLU/j8t5MZnWVPgANFACB97 Ah4cnICKB208fwyTDwzJYiTeZKQn+s8iMsHhEkZTt3FrYX9mrepmirvpE6sAEs/ox7 txjiIXS8B6azw== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4DqlWL68ykz6tmT; Tue, 2 Mar 2021 19:09:02 +0100 (CET) References: <87im6d5quy.fsf@posteo.de> <87czwkmfuk.fsf@gnus.org> User-agent: mu4e 1.5.7; emacs 27.1.91 From: Martin Puttke To: Lars Ingebrigtsen Subject: Re: bug#46817: update python grammar In-reply-to: <87czwkmfuk.fsf@gnus.org> Date: Tue, 02 Mar 2021 19:08:51 +0100 Message-ID: <874kht4edo.fsf@posteo.de> MIME-Version: 1.0 Content-Type: text/plain; format=flowed X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 46817 X-Mailman-Approved-At: Tue, 02 Mar 2021 13:27:59 -0500 Cc: 46817@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: -3.3 (---) Hi Lars, thank you for your offer to do the FSF paperwork. But at the moment I have no plans to submit another patch to emacs. It may come, but I prefer to do it when needed. All the best Martin Lars Ingebrigtsen writes: > Martin Puttke writes: > >> I made some fixes to enhance the python grammar file to enable >> it to >> understand python type hints and have non-trivial base classes. >> Please >> feel free to include my changes into emacs. > > Thanks; I'm not a Python or Wisent expert, but if I read the > patch > correctly, it looks good to me, and I've applied your patch to > Emacs 28. > > This change was small enough to apply without assigning > copyright to the > FSF, but for future patches you want to submit, it might make > sense to > get the paperwork started now, so that subsequent patches can be > applied > speedily. Would you be willing to sign such paperwork? -- Composed with Spacemacs (www.spacemacs.org) From debbugs-submit-bounces@debbugs.gnu.org Wed Mar 03 09:52:31 2021 Received: (at 46817) by debbugs.gnu.org; 3 Mar 2021 14:52:31 +0000 Received: from localhost ([127.0.0.1]:55495 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lHSrX-00067k-4s for submit@debbugs.gnu.org; Wed, 03 Mar 2021 09:52:31 -0500 Received: from quimby.gnus.org ([95.216.78.240]:39974) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lHSrU-00067T-Ga for 46817@debbugs.gnu.org; Wed, 03 Mar 2021 09:52:29 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Content-Type:MIME-Version:Message-ID:In-Reply-To:Date: References:Subject:Cc:To:From:Sender:Reply-To:Content-Transfer-Encoding: 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=1PTIfA7bmNHbrU1Was913zPJ6P7vox0we17PjYrbap8=; b=swggcmk+8md//H8pYb0MV9WZZ6 TaON9vPTGPPmJnG3gtHrK909anS5gVuiFs7UVpg8cs5aydtJXjHCNl4DIHYYcqSN2X04f3AdnzmLE N7OxmzCH47N9ZkGK2jFB3baRxbGEMtgBdX95+rE1g81FXi65/5kj/PrVdbMZJwcbyCbY=; Received: from cm-84.212.220.105.getinternet.no ([84.212.220.105] helo=xo) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1lHSrM-00019K-2z; Wed, 03 Mar 2021 15:52:22 +0100 From: Lars Ingebrigtsen To: Martin Puttke Subject: Re: bug#46817: update python grammar References: <87im6d5quy.fsf@posteo.de> <87czwkmfuk.fsf@gnus.org> <874kht4edo.fsf@posteo.de> Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAABGdBTUEAALGPC/xhBQAAACBj SFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAIVBMVEWwqJ6+ThpTUCRd W1cvKyT9/frf3dHGpzdUd7gWExL///+Z9jW6AAAAAWJLR0QKaND0VgAAAAd0SU1FB+UDAw4gK+zu BUcAAAGhSURBVDjLtdS9b4JAFADws5QmjGoXx54ubkbqwNaqbWSjgbuZKJA6atoQtyYujiSyvP+2 790BBWVoh95yej/f16GyzvD5XrQs1ulfgyTY9edNYBODhSzGiAtIGLtrhZ8afwX5/rVuBY+xG9ov zj321u1iKu/cPI8c1lEQZJLd1cACtlNg5S6AKYRvanCgiBhD7kAmPPelDj3hgVrxFnIVgu91hK/B tADDVAkNLKBjZxFHADkBFlTFsy0BjiINzKcyKRicHYCh7jY0EPwScH+tj6dgj6lKSETZLEGafuBO VyLdpWo2hBpQTX8EMz0EwS3nI3qBR55IYj0EQVRAVpUeN4FySaq+gQq4vg+xceFJt0QQIDyoIh4s bNuMoAAfIaW0s41zNsxwXMEUYaCqS8M2iwdAsEA46CLl1Aq8FeefqhN9Xc6jW4Ed689NkiQ08nUF p2Ms1JMC+kZkQZFKzoQfl88WzbRKWJ2MGpyrAeWcH2sAy7IryZsAvwJTbK9B9Pg0M9wW2PMetKz/ hoWCHd+3R6TpIbevF0sQMvxXYXHzd/sNQJzLUayhLjUAAAAldEVYdGRhdGU6Y3JlYXRlADIwMjEt MDMtMDNUMTQ6MzI6NDIrMDA6MDBCXhJmAAAAJXRFWHRkYXRlOm1vZGlmeQAyMDIxLTAzLTAzVDE0 OjMyOjQyKzAwOjAwMwOq2gAAAABJRU5ErkJggg== X-Now-Playing: Front 242's _Geography_: "GVDT" Date: Wed, 03 Mar 2021 15:52:18 +0100 In-Reply-To: <874kht4edo.fsf@posteo.de> (Martin Puttke's message of "Tue, 02 Mar 2021 19:08:51 +0100") Message-ID: <874khsxpb1.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 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: Martin Puttke writes: > thank you for your offer to do the FSF paperwork. But at the moment I > have no plans to submit another patch to emacs. It may come, but I > prefer to do it when needed. 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: 46817 Cc: 46817@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 (-) Martin Puttke writes: > thank you for your offer to do the FSF paperwork. But at the moment I > have no plans to submit another patch to emacs. It may come, but I > prefer to do it when needed. Sure; that's fine. -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From unknown Sat Jun 21 10:45:30 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Thu, 01 Apr 2021 11:24:05 +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