From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 675F245E8E; Fri, 13 Dec 2024 15:11:17 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 53CC440B8F; Fri, 13 Dec 2024 15:11:17 +0100 (CET) Received: from smtp.eurecom.fr (smtp.eurecom.fr [193.55.113.210]) by mails.dpdk.org (Postfix) with ESMTP id A2BE7409FA for ; Fri, 13 Dec 2024 15:11:16 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=eurecom.fr; i=@eurecom.fr; q=dns/txt; s=default; t=1734099077; x=1765635077; h=from:in-reply-to:references:date:cc:to:mime-version: message-id:subject:content-transfer-encoding; bh=wWZi46xgjrFG7FRjVSXKXc1vZP0Q8m8p5cqii2Fyhlw=; b=C03iXlhWgWJ/bUDVD4f6NG1NOTUueJtGn1YEhxlE+QhT/06mGtdABNeK FeKSivhEEyqJpwJ5yipbydhBVUjQdRC8kP0pMgLJOTCLFvycxTcF5USCd StCBIBKy+ZvQf+v42XoK2FpVa0+UtJyaQbo7UWyR/gKuXZXZFE0AHYnH3 I=; X-CSE-ConnectionGUID: GSg2/Xh3RS+qL6XL4fstYw== X-CSE-MsgGUID: +9iMZL8oQSGQ3i7/pSM/2A== X-IronPort-AV: E=Sophos;i="6.12,231,1728943200"; d="scan'208";a="28173588" Received: from quovadis.eurecom.fr ([10.3.2.233]) by drago1i.eurecom.fr with ESMTP; 13 Dec 2024 15:11:17 +0100 From: "Ariel Otilibili-Anieli" In-Reply-To: Content-Type: text/plain; charset="utf-8" X-Forward: 88.183.119.157 References: <20241208023022.777275-1-otilibil@eurecom.fr> <20241208023022.777275-2-otilibil@eurecom.fr> Date: Fri, 13 Dec 2024 15:11:16 +0100 Cc: dev@dpdk.org, "Thomas Monjalon" , "David Marchand" To: "Robin Jarry" MIME-Version: 1.0 Message-ID: <2f7a87-675c4080-be09-141f3260@213168101> Subject: =?utf-8?q?Re=3A?= [PATCH 1/1] =?utf-8?q?buildtools=3A?= clear out regex syntax warnings User-Agent: SOGoMail 5.11.1 Content-Transfer-Encoding: quoted-printable X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org On Friday, December 13, 2024 15:07 CET, "Robin Jarry" wrote: > Ariel Otilibili, Dec 08, 2024 at 03:25: > > * invalid escape sequences now generate SyntaxWarning > > * therefore changed syntax to raw string noration. > > > > Link: https://docs.python.org/3/library/re.html#module-re > > Signed-off-by: Ariel Otilibili >=20 > Hi Ariel, thanks for the fix! >=20 > Acked-by: Robin Jarry Awesome, Robin! >=20 > If you have time, I there are other bits that would need the same fix= : >=20 > buildtools/get-numa-count.py:14: numa=5Fnodes.sort(key=3Dlambd= a l: int(re.findall('\d+', l)[0])) > devtools/check-meson.py:54: if re.match('^ *\t', code): > doc/api/generate=5Fdoxygen.py:8:pattern =3D re.compile('^Preprocessin= g (.*)...$') >=20 Good, then; I'll push them in a subsequent series. > Cheers. >