From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by sourceware.org (Postfix) with ESMTPS id 880573858413 for ; Mon, 25 Jul 2022 19:07:29 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 880573858413 Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-564-Ik_z7u1bPtaRUc_1aNkiEg-1; Mon, 25 Jul 2022 15:07:27 -0400 X-MC-Unique: Ik_z7u1bPtaRUc_1aNkiEg-1 Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.rdu2.redhat.com [10.11.54.8]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id F215B917BE5 for ; Mon, 25 Jul 2022 19:07:26 +0000 (UTC) Received: from f35-zws-1 (unknown [10.2.16.60]) by smtp.corp.redhat.com (Postfix) with ESMTPS id C350FC15D67 for ; Mon, 25 Jul 2022 19:07:26 +0000 (UTC) Date: Mon, 25 Jul 2022 12:07:25 -0700 From: Kevin Buettner To: gdb-patches@sourceware.org Subject: Re: [PATCH v2] set/show python dont-write-bytecode fixes Message-ID: <20220725120725.0294785f@f35-zws-1> In-Reply-To: References: <20220723212324.1028060-1-kevinb@redhat.com> Organization: Red Hat MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.85 on 10.11.54.8 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-4.8 required=5.0 tests=BAYES_00, DKIMWL_WL_HIGH, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_NONE, 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 X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Jul 2022 19:07:30 -0000 On Sun, 24 Jul 2022 21:04:58 -0400 Simon Marchi wrote: > On 2022-07-23 17:23, Kevin Buettner wrote: > > > > -By default this option is set to @samp{auto}, in this mode Python will > > -check the environment variable @env{PYTHONDONTWRITEBYTECODE} to see > > -if it should write out byte-code or not. > > +By default this option is set to @samp{auto}. In this mode, provided > > +the @code{python ignore-environment} setting is @samp{off}, the > > +environment variable @env{PYTHONDONTWRITEBYTECODE} is examined to see > > +if it should write out byte-code or not. > > Spurious space at the end of this line. Otherwise, LGTM. Fixed and pushed. Kevin