From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr1-x42a.google.com (mail-wr1-x42a.google.com [IPv6:2a00:1450:4864:20::42a]) by sourceware.org (Postfix) with ESMTPS id B770B385E01D for ; Sat, 28 May 2022 11:55:53 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org B770B385E01D Received: by mail-wr1-x42a.google.com with SMTP id k16so4574255wrg.7 for ; Sat, 28 May 2022 04:55:53 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:subject:date:message-id:in-reply-to :references:reply-to:mime-version:content-transfer-encoding; bh=Kd4WiFwd3KIrA9NcATx2m32heE1opkhFknknhYyDKD0=; b=AoWt3l1h2xRBHIQbt8BwlLMLKlhtWolTYyRrZo0TXoOuyzMQQCASSJHCaCCE1W1qms NEJEO+lVwkxwM5VqVXyMmphCAXBEZxf8SSsCXNlAidss7On8RDPUU13Xp+HYoXJiBc5u VYn6U2JxNqSJ0gvTHg0O4z0E3p8LYc/bpTIZCkd+p/XR/ldRL/KNLL3JRVJyQIoaPk9+ wE4jPnUz1vh3KxZjHwsBLFNUDxPpvg4V+ri4jrMXHdRJDZiNYuXGhsoEWma+4qm795AL KuxBIlctPUq80M96lshu9/XVCR5H6svPBPrlH9hINDi9RbR0KFOKI/pJwaXdISsXaSsj IJEQ== X-Gm-Message-State: AOAM533OEXS2VJn2zviPhpuj7xNVFv0uO0ldGySU8cnVjPYEB2H1Ia6A Cwic97Ub6/24gkkm0dUb2NiQV7TOMVsF X-Google-Smtp-Source: ABdhPJxUdQ3exhWOXOAXn/RnbMWXASfkMscPt+DvYamh9IT6FHiWwxe4jxZwnvpc8gNYHo8ZlhA42A== X-Received: by 2002:a05:6000:15c5:b0:20d:125e:5b16 with SMTP id y5-20020a05600015c500b0020d125e5b16mr38473195wry.543.1653738952302; Sat, 28 May 2022 04:55:52 -0700 (PDT) Received: from localhost.localdomain (83.11.64.124.ipv4.supernova.orange.pl. [83.11.64.124]) by smtp.gmail.com with ESMTPSA id k15-20020a7bc30f000000b0039749b01ea7sm5467933wmj.32.2022.05.28.04.55.51 for (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Sat, 28 May 2022 04:55:51 -0700 (PDT) From: Paulo Neves To: gdb-patches@sourceware.org Subject: python unwinder doc improvement Date: Sat, 28 May 2022 13:55:07 +0200 Message-Id: <20220528115509.3865342-1-ptsneves@gmail.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: References: Reply-To: ptsneves@gmail.com MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=0.9 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_FROM, RCVD_IN_BARRACUDACENTRAL, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP, T_SCC_BODY_TEXT_LINE autolearn=no 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: Sat, 28 May 2022 11:55:57 -0000 [PATCH 1/2] gdb/python doc: Add register_unwinder to code example [PATCH 2/2] gdb/python doc: Add enable property to the unwinder Minor documentation changes to the unwinder example code with the goal of having all the features described in the prose also reflect on the code.