-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Calling function returned from complex object #68
Comments
@extremeheat any idea what could be done to make it work? |
Looked into this and it relates to GC. Python freeing memory after [js -> py] { r: 13, key: 'obj', val: 10004 }
[py -> js] { r: 15, action: 'get', ffid: 10004, key: 'second', c: 'jsi' }
[js -> py] { r: 15, key: 'fn', val: 10005 }
[py -> js] { r: 16, action: 'free', args: [ 10004 ], c: 'jsi' }
[py -> js] {
r: 17,
c: 'jsi',
p: 1,
action: 'call',
ffid: 10004,
key: 'second',
args: []
} Seems like JSPyBridge/src/pythonia/proxy.py Line 226 in 7879bda
|
Thanks a lot for looking into this! So seems like it will not be as "easy" as the other issues I had. I will then have to look for some kind of workaround. |
Hello,
sadly have one last problem for which I can not figure out what is going on. Would be amazing if you could help me with finding a solution. Thanks a lot for your help!
Here is the code to easily reproduce the issue I am facing:
The text was updated successfully, but these errors were encountered: