From patchwork Thu Jul 25 17:41:36 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Patrick McLean X-Patchwork-Id: 11059445 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 6B8A66C5 for ; Thu, 25 Jul 2019 17:41:55 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 5927A28A1E for ; Thu, 25 Jul 2019 17:41:55 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 4B82728A1F; Thu, 25 Jul 2019 17:41:55 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.9 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id E041A28A20 for ; Thu, 25 Jul 2019 17:41:54 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730033AbfGYRly (ORCPT ); Thu, 25 Jul 2019 13:41:54 -0400 Received: from smtp.gentoo.org ([140.211.166.183]:50578 "EHLO smtp.gentoo.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727951AbfGYRly (ORCPT ); Thu, 25 Jul 2019 13:41:54 -0400 Received: from chiana.gaikai.org (unknown [100.42.98.196]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) (Authenticated sender: chutzpah) by smtp.gentoo.org (Postfix) with ESMTPSA id 05F1C34882D for ; Thu, 25 Jul 2019 17:41:53 +0000 (UTC) From: Patrick McLean To: linux-trace-devel@vger.kernel.org Subject: [PATCH 1/3] trace-cmd: in python plugin, use PyUnicode_FromString on Python 3 Date: Thu, 25 Jul 2019 10:41:36 -0700 Message-Id: <20190725174138.3724131-2-chutzpah@gentoo.org> X-Mailer: git-send-email 2.22.0 In-Reply-To: <20190725174138.3724131-1-chutzpah@gentoo.org> References: <20190725174138.3724131-1-chutzpah@gentoo.org> MIME-Version: 1.0 Sender: linux-trace-devel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-trace-devel@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Patrick McLean All strings are unicode in Python 3, so PyString_* is no longer reccommended. This uses PyUnicode_* instead. Signed-off-by: Patrick McLean Reported-by: Patrick McLean Signed-off-by: Steven Rostedt (VMware) --- plugins/plugin_python.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/plugins/plugin_python.c b/plugins/plugin_python.c index e725ad8..dc7932e 100644 --- a/plugins/plugin_python.c +++ b/plugins/plugin_python.c @@ -81,7 +81,11 @@ int TEP_PLUGIN_LOADER(struct tep_handle *pevent) } else Py_DECREF(res); +#if PY_MAJOR_VERSION >= 3 + str = PyUnicode_FromString("pevent"); +#else str = PyString_FromString("pevent"); +#endif if (!str) return -ENOMEM;