From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from hamza.pair.com (hamza.pair.com [209.68.5.143]) by sourceware.org (Postfix) with ESMTPS id C0DB33858426 for ; Tue, 1 Nov 2022 12:01:04 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org C0DB33858426 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=pfeifer.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=pfeifer.com Received: from hamza.pair.com (localhost [127.0.0.1]) by hamza.pair.com (Postfix) with ESMTP id DDB8833E4C; Tue, 1 Nov 2022 08:01:02 -0400 (EDT) Received: from naga.localdomain (194-166-101-219.adsl.highway.telekom.at [194.166.101.219]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by hamza.pair.com (Postfix) with ESMTPSA id 5445033E6D; Tue, 1 Nov 2022 08:01:02 -0400 (EDT) Date: Tue, 1 Nov 2022 13:01:00 +0100 (CET) From: Gerald Pfeifer To: gcc-patches@gcc.gnu.org, =?ISO-8859-15?Q?Martin_Li=A8ka?= Subject: [committed] wwwdocs: codingconventions: Properly link to flake8 MIME-Version: 1.0 Content-Type: text/plain; charset=X-UNKNOWN X-Scanned-By: mailmunge 3.09 on 209.68.5.143 Message-Id: <20221101120102.DDB8833E4C@hamza.pair.com> X-Spam-Status: No, score=-10.9 required=5.0 tests=BAYES_00,GIT_PATCH_0,KAM_DMARC_STATUS,KAM_NUMSUBJECT,SPF_HELO_NONE,SPF_PASS,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: Nearly all hrefs= on our site are https:// or http://, and that's the case pretty much across the web. Still the protocol needs to be provided for links to work. Pushed. Gerald Web links need to be prefixed by https:// or http://. --- htdocs/codingconventions.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/codingconventions.html b/htdocs/codingconventions.html index f5e22983..348f1e1d 100644 --- a/htdocs/codingconventions.html +++ b/htdocs/codingconventions.html @@ -1487,7 +1487,7 @@ Definitions within the body of a namespace are not indented.

Python Language Conventions

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

    -- 2.38.0