From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24990 invoked by alias); 20 Mar 2017 14:36:48 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 23578 invoked by uid 89); 20 Mar 2017 14:36:45 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: =?ISO-8859-1?Q?No, score=-1.4 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,RCVD_IN_SORBS_SPAM,SPF_PASS autolearn=no version=3.3.2 spammy==e5=b0=a7, memoryview, xxx?= X-HELO: mail-qk0-f182.google.com Received: from mail-qk0-f182.google.com (HELO mail-qk0-f182.google.com) (209.85.220.182) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 20 Mar 2017 14:36:43 +0000 Received: by mail-qk0-f182.google.com with SMTP id 1so111505023qkl.3 for ; Mon, 20 Mar 2017 07:36:43 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:from:date:message-id:subject:to:cc :content-transfer-encoding; bh=nMlc0mGBov2z19YoeafMadHp/I1IawrhycrEAZoy8ls=; b=sjOIvR62Q8nSujeJWRqpisHmaEpoIyXbq5sk/bHi8Tyyechv3woxjJMkt0DNoFOnyG adv9VjT/+qE29Q+tOWklGb8C5tRmQHbNyz4lr6C7fqe+qL9X0Miya3yCGjhd2domgxY/ rm5VCPK4b0cyouzxfRd2OoatiZThA9ADyLnWlzNWNODiUL2g/zSo2EIyx3x131OHXBmO +GSSFKfTu7VT1uGk4jgaCpk1H4AcC4kEMWnWEfx1J9w7pARX4UftgcgcvwA66e21FxWK Nz6OupIrNbhdRX0LPMth52QzvmDIf3UVrfXD4TJ+BnqqawYLrqt/USJUkFtzZP3i5y9m epPw== X-Gm-Message-State: AFeK/H1X/K7BjU3Fan1Sy7Cf5ZxkHVOu2zpVuKqeCdWOdEWz6RB8ZkxcDtrbVuBCmblFZwuhNavMBBKNVeZ1AQ== X-Received: by 10.55.137.7 with SMTP id l7mr26599510qkd.11.1490020602323; Mon, 20 Mar 2017 07:36:42 -0700 (PDT) MIME-Version: 1.0 Received: by 10.12.140.130 with HTTP; Mon, 20 Mar 2017 07:36:42 -0700 (PDT) From: Yao Qi Date: Mon, 20 Mar 2017 14:36:00 -0000 Message-ID: Subject: Python 3 vs. @code{Python} 3 in python.texi To: Eli Zaretskii Cc: Tim Wiederhake , "gdb-patches@sourceware.org" Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-IsSubscribed: yes X-SW-Source: 2017-03/txt/msg00334.txt.bz2 Hi Eli, Which one do we use in sentence "In XXX, the return value is a @code{memoryview} object.", "Python 3" or "@code{Python} 3"? https://sourceware.org/ml/gdb-patches/2017-03/msg00039.html We use "@code{Python} 3" for Inferior.read_memory, .... @code{Inferior.write_memory} function. In @code{Python} 3, the return value is a @code{memoryview} object. so I suggested that we need to use "@code{Python} 3" for consistency, but Tim believes "Python 3" should be used, because "@code{python} is used when the actual "python" command in GDB is meant, not the name of the language per-se." --=20 Yao (=E9=BD=90=E5=B0=A7)