mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-22 01:21:53 -06:00
simpletrace: update code for Python 3.11
The call to `getargspec` was deprecated and in Python 3.11 it has been removed in favor of `getfullargspec`. `getfullargspec` is compatible with QEMU's requirement of at least Python version 3.6. Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Mads Ynddal <m.ynddal@samsung.com> Message-id: 20230926103436.25700-6-mads@ynddal.dk Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
This commit is contained in:
parent
3b71b61e9f
commit
ce96eb334d
1 changed files with 1 additions and 1 deletions
|
@ -221,7 +221,7 @@ def process(events, log, analyzer, read_header=True):
|
||||||
return analyzer.catchall
|
return analyzer.catchall
|
||||||
|
|
||||||
event_argcount = len(event.args)
|
event_argcount = len(event.args)
|
||||||
fn_argcount = len(inspect.getargspec(fn)[0]) - 1
|
fn_argcount = len(inspect.getfullargspec(fn)[0]) - 1
|
||||||
if fn_argcount == event_argcount + 1:
|
if fn_argcount == event_argcount + 1:
|
||||||
# Include timestamp as first argument
|
# Include timestamp as first argument
|
||||||
return lambda _, rec: fn(*(rec[1:2] + rec[3:3 + event_argcount]))
|
return lambda _, rec: fn(*(rec[1:2] + rec[3:3 + event_argcount]))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue