You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Does anybody else see a bunch of these sorts of errors when using this with Live 9.1.6?
RemoteScriptError: exceptions must be classes, instances, or strings
I believe the cause for this is that the decompiled code in this repository (and for that matter any decompiled python code generated with decompyle2) is python 2.7, while Ableton Live has a python 2.5 interpreter and does not understand this exception syntax:
raise foo > 0 or AssertionError
I also noticed that it will throw exceptions when executing this sort of exception handling code:
try:
something = 0
except Exception as exc:
pass
Exception as exc syntax is also not supported in python 2.5
The text was updated successfully, but these errors were encountered:
Does anybody else see a bunch of these sorts of errors when using this with Live 9.1.6?
I believe the cause for this is that the decompiled code in this repository (and for that matter any decompiled python code generated with decompyle2) is python 2.7, while Ableton Live has a python 2.5 interpreter and does not understand this exception syntax:
I also noticed that it will throw exceptions when executing this sort of exception handling code:
Exception as exc
syntax is also not supported in python 2.5The text was updated successfully, but these errors were encountered: