zyoung-rc
zyoung-rc
Seems to be the `__class__` property in your example. Here is the example in it's minimally failing form ```python class Object: pass class Wrapper: def __init__(self, force_error=False): if force_error: print(self.__wrapped__)...
I use pytest and this fixture temporarily fixes the problem until a permanent fix can be made. It can easily be adapted to unittest or another framework. ```python @pytest.fixture(scope="session") def...
@GrahamDumpleton I've narrowed it down further. It appears PyCharm does not like the `ValueError` raised. Changing it to an `AttributeError` seems to appease the debugger. So something like ```python from...
@hartym I edited my comment to reflect the usage of `scope="session"`. There was no particular reason for using module. @GrahamDumpleton Glad to help! I would have written a PR, but,...