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
PyScripter Show activity 12/28/09
Some analysis suggests the following:
The problem occurs in Connection._unbox:
cls = getattr(obj, "class", type(obj))
wx.cvar.class raises a NameError and not an AttributeError as it
should (this is a bug on wx's part). As a result _unbox fails.
The workaround which would make rpyc more forgiving to such bugs would
be to replace the getattr statement with the following:
try:
cls = obj.__class__
except:
cls = type(obj)
Could you please implement this small change?
The text was updated successfully, but these errors were encountered:
PyScripter Show activity 12/28/09
Some analysis suggests the following:
The problem occurs in Connection._unbox:
cls = getattr(obj, "class", type(obj))
wx.cvar.class raises a NameError and not an AttributeError as it
should (this is a bug on wx's part). As a result _unbox fails.
The workaround which would make rpyc more forgiving to such bugs would
be to replace the getattr statement with the following:
Could you please implement this small change?
The text was updated successfully, but these errors were encountered: