Re: [PATCH] tracetool: avoid invalid escape in Python string

2023-11-08 Thread Stefan Hajnoczi
On Wed, Nov 08, 2023 at 02:56:49PM +0400, marcandre.lur...@redhat.com wrote: > From: Marc-André Lureau > > This is an error in Python 3.12; fix it by using a raw string literal. > > Cc: qemu-sta...@nongnu.org > Signed-off-by: Marc-André Lureau > --- > scripts/tracetool/__init__.py | 2 +- > 1

Re: [PATCH] tracetool: avoid invalid escape in Python string

2023-11-08 Thread Philippe Mathieu-Daudé
On 8/11/23 11:56, marcandre.lur...@redhat.com wrote: From: Marc-André Lureau This is an error in Python 3.12; fix it by using a raw string literal. Cc: qemu-sta...@nongnu.org Signed-off-by: Marc-André Lureau --- scripts/tracetool/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deleti

[PATCH] tracetool: avoid invalid escape in Python string

2023-11-08 Thread marcandre . lureau
From: Marc-André Lureau This is an error in Python 3.12; fix it by using a raw string literal. Cc: qemu-sta...@nongnu.org Signed-off-by: Marc-André Lureau --- scripts/tracetool/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/tracetool/__init__.py b/scrip

[PATCH] tracetool: avoid invalid escape in Python string

2023-10-16 Thread Paolo Bonzini
This is an error in Python 3.12; fix it by using a raw string literal. Cc: qemu-sta...@nongnu.org Signed-off-by: Paolo Bonzini --- scripts/tracetool/__init__.py| 14 +++--- scripts/tracetool/format/log_stap.py | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git