-
Notifications
You must be signed in to change notification settings - Fork 1k
Closed
Labels
ai-triage-respondedIndicate whether the AI triage agent has responded to this issue.Indicate whether the AI triage agent has responded to this issue.team needs to reproduceIssue has not been reproduced yetIssue has not been reproduced yet
Description
This code here;
class MyNumber:
def __init__(self, v: int):
self._value = v
def __add__(self, v: "MyNumber") -> "MyNumber":
return MyNumber(self._value + v._value)
# hover on `+` and confirm it shows tooltip for `__add__`
e = MyNumber(0) + MyNumber(1)There is no hover on the "+"
Reactions are currently unavailable
Metadata
Metadata
Labels
ai-triage-respondedIndicate whether the AI triage agent has responded to this issue.Indicate whether the AI triage agent has responded to this issue.team needs to reproduceIssue has not been reproduced yetIssue has not been reproduced yet