From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 9DD5BA0352; Thu, 16 Jan 2020 08:08:44 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 503351C020; Thu, 16 Jan 2020 08:08:44 +0100 (CET) Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by dpdk.org (Postfix) with ESMTP id 8572E1C013 for ; Thu, 16 Jan 2020 08:08:43 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga107.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 15 Jan 2020 23:08:42 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.70,325,1574150400"; d="scan'208";a="257221316" Received: from unknown (HELO dpdk-xiaoqimai-dut.sh.intel.com) ([10.240.179.33]) by fmsmga002.fm.intel.com with ESMTP; 15 Jan 2020 23:08:40 -0800 From: Xiao Qimai To: dts@dpdk.org Cc: Xiao Qimai Date: Thu, 16 Jan 2020 15:05:26 +0800 Message-Id: <1579158326-432253-1-git-send-email-qimaix.xiao@intel.com> X-Mailer: git-send-email 1.8.3.1 Subject: [dts] [PATCH V1]dep/lldp: explicitly encode str to bytes in python3 X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: test suite reviews and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dts-bounces@dpdk.org Sender: "dts" python3 will not implicitly convert bytes to str Signed-off-by: Xiao Qimai --- dep/lldp.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dep/lldp.py b/dep/lldp.py index d8fabe2..faa3b4d 100644 --- a/dep/lldp.py +++ b/dep/lldp.py @@ -79,7 +79,7 @@ class LLDPGeneric(Packet): def post_build(self, p, pay): if self.length is None: l = len(p) - 2 - p = chr((self.type << 1) ^ (l >> 8)) + chr(l & 0xff) + p[2:] + p = chr((self.type << 1) ^ (l >> 8)).encode() + chr(l & 0xff).encode() + p[2:] return p+pay @@ -212,7 +212,7 @@ class LLDPManagementAddress(LLDPGeneric): # TODO Remove redundant code. LLDPGeneric.post_build() if self.length is None: l = len(p) - 2 - p = chr((self.type << 1) ^ (l >> 8)) + chr(l & 0xff) + p[2:] + p = chr((self.type << 1) ^ (l >> 8)).encode() + chr(l & 0xff).encode() + p[2:] if self.addrlen is None: addrlen = len(p) - 2 - 8 - len(self.oid) + 1 -- 2.17.1