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
Thanks for opening the issue! I should figure out how to handle properties so that errors aren't thrown, though I'll need to think about this since they can have both getters and setters.
For now, you should be able to do %break MyClass.a.fget ? (and likewise for fset and fdel, if you have a separate setter or deleter defined)
Thank you for the hint about fset and the company, I completely forgot about them (my bad).
Maybe the proper way to resolve the ambiguity would be to inspect how many property handlers are declared, and if there's only one (e.g. only fget), choose it without bothering the user; otherwise report an error with a list of options.
The following code causes an error:
The text was updated successfully, but these errors were encountered: