From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp-out2.suse.de (smtp-out2.suse.de [IPv6:2001:67c:2178:6::1d]) by sourceware.org (Postfix) with ESMTPS id 1110E3850858 for ; Thu, 20 Oct 2022 11:53:32 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 1110E3850858 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=suse.cz Authentication-Results: sourceware.org; spf=fail smtp.mailfrom=suse.cz Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by smtp-out2.suse.de (Postfix) with ESMTPS id E34F720A3F; Thu, 20 Oct 2022 11:53:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.cz; s=susede2_rsa; t=1666266810; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=Ap1tnopirE6cSUzkPFgajf14EBDMNpxO1iIrP2JxmZg=; b=gIxp8dAQZltsradg+pNKUQnvD0LW5et4YpEihXehrcngrZFTJxVfHteOex/C9lLQSkFYPD u70UII6EsPoKvLjfax27CgHm+WHFvNfrp4TIuJRpHAG7T8pHMffja6mgdjcBx/EvT3T34K j+4zrHTZ6Hvd1m6V9AGS88S59iz7SvI= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.cz; s=susede2_ed25519; t=1666266810; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=Ap1tnopirE6cSUzkPFgajf14EBDMNpxO1iIrP2JxmZg=; b=Ue7lrvjyqbwn2SNBfnLpdJSWfneHQl6AV/VARhnTuSwt6WSiNq8bzFNyXwTBrX6z+kxCZI kodNnslFavIjtwCQ== Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by imap2.suse-dmz.suse.de (Postfix) with ESMTPS id C9EF413494; Thu, 20 Oct 2022 11:53:30 +0000 (UTC) Received: from dovecot-director2.suse.de ([192.168.254.65]) by imap2.suse-dmz.suse.de with ESMTPSA id 6AsZMLo2UWPfEAAAMHmgww (envelope-from ); Thu, 20 Oct 2022 11:53:30 +0000 Message-ID: Date: Thu, 20 Oct 2022 13:53:30 +0200 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.3.3 Subject: Re: [DOCS] Python Language Conventions Content-Language: en-US To: Gerald Pfeifer Cc: David Malcolm , gcc-patches@gcc.gnu.org, Gaius Mulley References: <73efef2e-0a77-529c-73b3-1164480d3a86@pfeifer.com> <8ac4ed42-0f7c-c625-a55d-263452cb5250@suse.cz> From: =?UTF-8?Q?Martin_Li=c5=a1ka?= In-Reply-To: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-12.1 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,GIT_PATCH_0,NICE_REPLY_A,RCVD_IN_DNSWL_LOW,SPF_HELO_NONE,SPF_SOFTFAIL,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: On 10/20/22 13:34, Gerald Pfeifer wrote: > On Mon, 17 Oct 2022, Martin Liška wrote: >> All right, let me install my initial patch with the improved wording. > > The validator noticed a small issue which I addressed thusly (by > moving up the

- the beginning of
    implicitly closes a

    ). > > No worries - that's what validators are for. :-) Heh ;) Thanks for the fix. Martin > > Gerald > > commit e9164572d233645b51ed8fa27729a52a0e242984 > Author: Gerald Pfeifer > Date: Thu Oct 20 13:04:48 2022 +0200 > > codingconventions: Fix markup > > diff --git a/htdocs/codingconventions.html b/htdocs/codingconventions.html > index 9d0a3f14..f88ef019 100644 > --- a/htdocs/codingconventions.html > +++ b/htdocs/codingconventions.html > @@ -1486,17 +1486,15 @@ Definitions within the body of a namespace are not indented. > >

    Python Language Conventions

    > > -

    > -Python scripts should follow PEP 8 – Style Guide for Python Code > +

    Python scripts should follow PEP 8 – Style Guide for Python Code > which can be verified by the flake8 tool. > -We recommend using the following flake8 plug-ins: > +We recommend using the following flake8 plug-ins:

    > >
      >
    • flake8-builtins
    • >
    • flake8-import-order
    • >
    • flake8-quotes
    • >
    > -

    > > >