From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-io1-xd2d.google.com (mail-io1-xd2d.google.com [IPv6:2607:f8b0:4864:20::d2d]) by sourceware.org (Postfix) with ESMTPS id 475F03AA9838 for ; Tue, 30 Aug 2022 17:49:22 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 475F03AA9838 Received: by mail-io1-xd2d.google.com with SMTP id z72so9856373iof.12 for ; Tue, 30 Aug 2022 10:49:22 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=mime-version:user-agent:message-id:in-reply-to:date:references :subject:cc:to:from:x-gm-message-state:from:to:cc; bh=G4qSLxs29q5KIhIFNtcYVlHiMOJvHdDm9A8hJGUugks=; b=d2hlA0Qba2Jtsms++M3Og2nwwtyTHmBAN1NOmEZ4Pq7VbYH+UwWfr8hQzOhO1iaCaG 1Irs+UTd2LCZWuWReTxdM5EhmdexbzTPsMVy2IWa1rowpE7DtvoRjVcmZLuWzVQv3Lg5 BCZcRWGs19ZxtSxw2rE2vw4w+8a7Jo53oFulGedaaR5/RR8v8Ko6DSkUAqgIqEFudxZt x/QcQ8FZZDSJn7P9gGip1gHwblvZoLBK1FN5HVvEx9OR7zO8vW2CKVgZ7vAxDjp9UMhp S1Eaz/9FZ8HTIwxaDaZkwQAHNfocK6Yvh8TRptKj0AQTNJK9OvHVdlXFPVnjY3iNDLWS 88ig== X-Gm-Message-State: ACgBeo1p3iU0dDjGb7ii31s5DvH4K7gngcpuOYc3Aoi88m6yBSetOfVL WHk6Fiwyn0RkkIdvRMplG5sjX8IjW+jiIw== X-Google-Smtp-Source: AA6agR7rG0AlQLqr6ApjyBIhr5Wcz1MBoOJBbkpo/LDmMl9exROVLZGsbQnOvLOiSaoo/ArcYkOCuw== X-Received: by 2002:a6b:105:0:b0:688:2b66:1ed6 with SMTP id 5-20020a6b0105000000b006882b661ed6mr11707766iob.165.1661881761683; Tue, 30 Aug 2022 10:49:21 -0700 (PDT) Received: from murgatroyd (97-122-83-53.hlrn.qwest.net. [97.122.83.53]) by smtp.gmail.com with ESMTPSA id n15-20020a02c78f000000b003434a4acb8fsm5707730jao.117.2022.08.30.10.49.20 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 30 Aug 2022 10:49:21 -0700 (PDT) From: Tom Tromey To: Tom Tromey via Gdb-patches Cc: Tom Tromey Subject: Re: [PATCH 0/2] Fix two small Python flush problems References: <20220815185009.1288079-1-tromey@adacore.com> X-Attribution: Tom Date: Tue, 30 Aug 2022 11:49:20 -0600 In-Reply-To: <20220815185009.1288079-1-tromey@adacore.com> (Tom Tromey via Gdb-patches's message of "Mon, 15 Aug 2022 12:50:07 -0600") Message-ID: <871qsxbp0f.fsf@tromey.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Status: No, score=-5.1 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP, T_SCC_BODY_TEXT_LINE 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: Tue, 30 Aug 2022 17:49:23 -0000 >>>>> "Tom" == Tom Tromey via Gdb-patches writes: Tom> This short series fixes a couple of small problems with the 'flush' Tom> function in Python. Tom> First, I noticed that the documentation is missing a part of the Tom> description. Then, I noticed that the stdout/stderr 'flush' method Tom> was incorrectly implemented. I'm checking these in now. Tom