We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d5311d commit 07e7bbaCopy full SHA for 07e7bba
1 file changed
addons/source-python/packages/source-python/memory/manager.py
@@ -637,6 +637,11 @@ def fget(ptr):
637
args,
638
return_type
639
)
640
+ for func_cache in funcs.values():
641
+ if func_cache == func:
642
+ func = func_cache
643
+ break
644
+
645
funcs[address] = func
646
647
# Wrap it using MemberFunction, so we don't have to pass the this
0 commit comments