-
Notifications
You must be signed in to change notification settings - Fork 213
Labels
help wantedLarger than "good first issue", but still well-defined and ready for someone to pick upLarger than "good first issue", but still well-defined and ready for someone to pick up
Description
Describe the Bug
The hover text on the full_url attribute is (attribute) full_url: Unknown
import urllib.request
urllib.request.Request('http://example.com', method='GET').full_url
This seem to happen on property attribute with setter and deleter.
Minimal reproducible example:
class A:
@property
def prop(self) -> int:
return 42
@prop.setter
def prop(self, value: int) -> None:
pass
@prop.deleter
def prop(self) -> None:
pass
A().prop
Sandbox Link
(Only applicable for extension issues) IDE Information
No response
Metadata
Metadata
Assignees
Labels
help wantedLarger than "good first issue", but still well-defined and ready for someone to pick upLarger than "good first issue", but still well-defined and ready for someone to pick up