Re: [PATCH v2 04/12] simpletrace: update code for Python 3.11

2023-05-14 Thread Mads Ynddal
> On 9 May 2023, at 16.38, Stefan Hajnoczi wrote: > > On Tue, May 02, 2023 at 11:23:31AM +0200, Mads Ynddal wrote: >> From: Mads Ynddal >> >> The call to `getargspec` was deprecated and in Python 3.11 it has been >> removed in favor of `getfullargspec`. > > Please add that getfullargspec() i

Re: [PATCH v2 04/12] simpletrace: update code for Python 3.11

2023-05-09 Thread Stefan Hajnoczi
On Tue, May 02, 2023 at 11:23:31AM +0200, Mads Ynddal wrote: > From: Mads Ynddal > > The call to `getargspec` was deprecated and in Python 3.11 it has been > removed in favor of `getfullargspec`. Please add that getfullargspec() is available in Python 3.6, the minimum Python version required by

[PATCH v2 04/12] simpletrace: update code for Python 3.11

2023-05-02 Thread Mads Ynddal
From: Mads Ynddal The call to `getargspec` was deprecated and in Python 3.11 it has been removed in favor of `getfullargspec`. Signed-off-by: Mads Ynddal --- scripts/simpletrace.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/simpletrace.py b/scripts/simpletrace.