mirror of
https://git.yoctoproject.org/poky
synced 2026-05-09 05:29:32 +00:00
bitbake: exceptions: Add hack to workaround python 3.13 failures
(Bitbake rev: 95a48f6e4b2f60b7b477bac7db5bde10e10c5a05) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -47,7 +47,11 @@ def _get_frame_args(frame):
|
||||
cls = self.__class__.__name__
|
||||
|
||||
arginfo.args.pop(0)
|
||||
del arginfo.locals['self']
|
||||
try:
|
||||
del arginfo.locals['self']
|
||||
except TypeError:
|
||||
# FIXME - python 3.13 FrameLocalsProxy can't be modified
|
||||
pass
|
||||
else:
|
||||
cls = None
|
||||
|
||||
|
||||
Reference in New Issue
Block a user