From nobody Fri Dec 19 06:58:38 2025 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 8385079DB9; Sun, 24 Mar 2024 22:47:44 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1711320464; cv=none; b=tg2fx0JjdUWcTbsNzKRT/IaFQ4U5/XBQAPe4CoRo700P3ZnihDeJIIPt1Z3v/PvCK4QHENrLJmyBfW6TTjLikI5GVORu62yzGyh+ludvvyq1YbOBQTAehTCFswsXzg1S81yZ7t0FsZymKdTf3gliPypmdrLhRRoi3E70kWqpXXs= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1711320464; c=relaxed/simple; bh=3wlScet/gGLXlUYxf1X1RksuP6JQN/1vtVXO9KjdtqM=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=Mpqwht+wOhrIFDRKVMiS1ayVikmBC12dNG3JDCQvMkTPYkA4cQjC/I4yKrgo3eg+KmB+7NPoSTMVV+HG8tWXLbj/G/vSVldGK6hbIlSzoHkLbqzQXjMEWWTAxCLYocJoXn9Wxge6uxF0bS3+ic7WnNPwOGNncLtlWaaOkMNAGlg= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=f0K3gwX9; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="f0K3gwX9" Received: by smtp.kernel.org (Postfix) with ESMTPSA id AD3F5C43390; Sun, 24 Mar 2024 22:47:43 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1711320464; bh=3wlScet/gGLXlUYxf1X1RksuP6JQN/1vtVXO9KjdtqM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=f0K3gwX9Gc+CVYZgdPMWXV7nRonHFm00YElGH/2CzRLXIEKylihy95vOQDEh8FXor 9mdqzr76wp5BCJpvWkbfbb2GcivuEppRZ7Yr4PF5YBhUnwN/6LyZUEY+gp99tRPqiC HpJdcIoCD0VeT5Fly50erw1TOonDxgMcncjhPcXyxvVVgxJjmVh8KdcKob2NAlyelZ ZZ0Fcut4ZStOTlcQNBF27sWHKMCoTg6q9YaUZkPD78gLL5jYcs5PKvqezeIGp3PZXn EOud5CKnJ1eRAAVFYZuOhCN3C8yAxIG+c3mYRzHPK649cpSL4jjkqgjr7AefknXiw+ wfPZnP7giha+A== From: Sasha Levin To: linux-kernel@vger.kernel.org, stable@vger.kernel.org Cc: Andrew Ballance , Justin Stitt , Masahiro Yamada , Sasha Levin Subject: [PATCH 6.7 023/713] gen_compile_commands: fix invalid escape sequence warning Date: Sun, 24 Mar 2024 18:35:49 -0400 Message-ID: <20240324224720.1345309-24-sashal@kernel.org> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20240324224720.1345309-1-sashal@kernel.org> References: <20240324224720.1345309-1-sashal@kernel.org> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-stable: review X-Patchwork-Hint: Ignore Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" From: Andrew Ballance [ Upstream commit dae4a0171e25884787da32823b3081b4c2acebb2 ] With python 3.12, '\#' results in this warning SyntaxWarning: invalid escape sequence '\#' Signed-off-by: Andrew Ballance Reviewed-by: Justin Stitt Signed-off-by: Masahiro Yamada Signed-off-by: Sasha Levin --- scripts/clang-tools/gen_compile_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/clang-tools/gen_compile_commands.py b/scripts/clang-to= ols/gen_compile_commands.py index 5dea4479240bc..e4fb686dfaa9f 100755 --- a/scripts/clang-tools/gen_compile_commands.py +++ b/scripts/clang-tools/gen_compile_commands.py @@ -170,7 +170,7 @@ def process_line(root_directory, command_prefix, file_p= ath): # escape the pound sign '#', either as '\#' or '$(pound)' (depending o= n the # kernel version). The compile_commands.json file is not interepreted # by Make, so this code replaces the escaped version with '#'. - prefix =3D command_prefix.replace('\#', '#').replace('$(pound)', '#') + prefix =3D command_prefix.replace(r'\#', '#').replace('$(pound)', '#') =20 # Return the canonical path, eliminating any symbolic links encountere= d in the path. abs_path =3D os.path.realpath(os.path.join(root_directory, file_path)) --=20 2.43.0