1
0
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:
Richard Purdie
2024-10-08 13:36:25 +01:00
parent 9a6c5fe1f8
commit 766d097660
+5 -1
View File
@@ -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