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 C837CA00C5; Thu, 7 May 2020 11:36:38 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 721DF1DADA; Thu, 7 May 2020 11:36:38 +0200 (CEST) Received: from mail-wm1-f67.google.com (mail-wm1-f67.google.com [209.85.128.67]) by dpdk.org (Postfix) with ESMTP id 801BF1D9D3 for ; Thu, 7 May 2020 11:36:36 +0200 (CEST) Received: by mail-wm1-f67.google.com with SMTP id k12so5663886wmj.3 for ; Thu, 07 May 2020 02:36:36 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:message-id:subject:from:to:date:in-reply-to :references:content-transfer-encoding:user-agent:mime-version; bh=1AQFZI7HYRFpgLtdyTaTYoHbnIDbv/qoL3dp0sjW5s4=; b=Cya+5z+M3KX0MQvMyGeHdSD2FGlLzjP699qxhY/a0cfHbiG3kyyDGO5Avy0WT6Sugd u2x4javEDBKpCs4pqcPrxkaNqGYqevBEiPQM+a4vN71OKHtbMgAw2Y9UAcisZF7a0Ygs QUGuQbFFPI4lVwf2uBMejKBIJayOWtlBjyWIYEYz8saR4H4lJ0bm8X9a+69bAiGaQR2A euVMFNfOaaWVSukG+V8buulisK3yee5l3ufeswmn18gOkpp9wlGKEiMy1U4VIiCytOml eb0XKqDD+Ia5RV/NtVnMoI8ze1Wb3nyLiJUUXKNkr81EOmHiEnhIMXyPbc39//46d92H fWfw== X-Gm-Message-State: AGi0PuaS58TkxYMWrOy3SubQ5fpNOnoGyjCPOYk7+KMlqbK9dYDGB/Cf v8JoYdcujPFZe6YoEhx2w/iwJQU5Lcv9RA== X-Google-Smtp-Source: APiQypIua68v9HE/K82mQVTjAmqq2dj7rFrTVE3I4gflIsAUjXA/1t/K+d8Ig6/CmgY72An6Qyokew== X-Received: by 2002:a7b:c1da:: with SMTP id a26mr8806096wmj.125.1588844196210; Thu, 07 May 2020 02:36:36 -0700 (PDT) Received: from localhost ([88.98.246.218]) by smtp.gmail.com with ESMTPSA id v11sm7293982wrv.53.2020.05.07.02.36.35 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 07 May 2020 02:36:35 -0700 (PDT) Message-ID: From: Luca Boccassi To: Christian Ehrhardt , dev Date: Thu, 07 May 2020 10:36:35 +0100 In-Reply-To: <20200507072629.2374881-1-christian.ehrhardt@canonical.com> References: <20200507072629.2374881-1-christian.ehrhardt@canonical.com> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable User-Agent: Evolution 3.30.5-1.1 MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH] autotest: fix for pure python3 environments X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Thu, 2020-05-07 at 09:26 +0200, Christian Ehrhardt wrote: > Without this fix in a pure python3 environment this will run into > issues like: > ModuleNotFoundError: No module named 'StringIO' > or later string encoding issues on check_output. >=20 > Signed-off-by: Christian Ehrhardt > --- > app/test/autotest_runner.py | 16 +++++++--------- > 1 file changed, 7 insertions(+), 9 deletions(-) Acked-by: Luca Boccassi Note that this makes the file python3-only (as far as I can see) - I think it's fine at this point, given python2 is EOL? --=20 Kind regards, Luca Boccassi