Graham Dumpleton
Graham Dumpleton
The debugger is trying to access attributes of the wrapt ProxyObject instance before it is initialized properly. The exception is due to that access when it is in an uninitialized...
It is the nature of debuggers that they may provide a live view of objects on the stack or otherwise somehow in scope. If that feature is enabled, possibly simply...
Can you confirm that if you tell the debugger to continue from that point that it then will run until the next break point or exception? Also, is there a...
Is the `.idea` directory an editor directory and should it be removed and then name added to `.gitignore`?
Do you get the same problem if you set and export the environment variable: ``` WRAPT_DISABLE_EXTENSIONS=true ``` This will clarify whether it is only specific to C extension variant of...
The problem is that I don't know enough about adding python type hinting to a package to know whether this patch even works. From my testing it is incomplete for...
Can someone try and run this little test program through the debugger to see if it fails in same was as debugger has so far. ``` class Object: pass class...
I just modified it so there would be code run before the `setattr`. Can you try again if you use the original version.
I have made another change to the code to try. This time added a `__dict__` property. The debugger is likely using `dir()` to introspect the object but that fails. The...
Try again with this one. We just need to try and work out which special method might be tripping it up. ``` class Object: pass class Wrapper: def __init__(self, force_error=False):...