[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <CAFhGd8o10KWEX=H56kUN0hjY=fowijov0bn+j_kOmv6BPwJ-yw@mail.gmail.com>
Date: Tue, 13 Feb 2024 16:40:17 -0800
From: Justin Stitt <justinstitt@...gle.com>
To: Andrew Ballance <andrewjballance@...il.com>
Cc: masahiroy@...nel.org, linux-kbuild@...r.kernel.org,
linux-kernel-mentees@...ts.linuxfoundation.org, linux-kernel@...r.kernel.org,
llvm@...ts.linux.dev, morbo@...gle.com, nathan@...nel.org,
ndesaulniers@...gle.com, nicolas@...sle.eu, skhan@...uxfoundation.org
Subject: Re: [PATCH v2] gen_compile_commands: fix invalid escape sequence warning
Hi,
On Mon, Feb 12, 2024 at 6:28 PM Andrew Ballance
<andrewjballance@...il.com> wrote:
>
> with python 12.1 '\#' results in this warning
> SyntaxWarning: invalid escape sequence '\#'
Yes, since Python 3.12 escaping invalid characters will result in a
SyntaxWarning.
The complete table of supported escape codes is available here [1].
>
> Signed-off-by: Andrew Ballance <andrewjballance@...il.com>
> ---
> 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-tools/gen_compile_commands.py
> index 5dea4479240b..93f64095fda9 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_path):
> # escape the pound sign '#', either as '\#' or '$(pound)' (depending on the
> # kernel version). The compile_commands.json file is not interepreted
> # by Make, so this code replaces the escaped version with '#'.
> - prefix = command_prefix.replace('\#', '#').replace('$(pound)', '#')
> + prefix = command_prefix.replace('\\#', '#').replace('$(pound)', '#')
I'd personally prefer using a raw string:
- prefix = command_prefix.replace('\#', '#').replace('$(pound)', '#')
+ prefix = command_prefix.replace(r'\#', '#').replace('$(pound)', '#')
This makes it clear that a literal backslash followed by a literal
pound sign will be replaced.
>
> # Return the canonical path, eliminating any symbolic links encountered in the path.
> abs_path = os.path.realpath(os.path.join(root_directory, file_path))
> --
> 2.43.0
>
[1]: https://docs.python.org/3/reference/lexical_analysis.html#index-23
Thanks
Justin
Powered by blists - more mailing lists