Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🦾 add @override to __init__.pyi, dtypes.pyi and _just.pyi #308

Merged
merged 7 commits into from
Mar 12, 2025

Conversation

guan404ming
Copy link
Collaborator

@guan404ming guan404ming commented Mar 12, 2025

towards #301

  • I think separate into 2-3 PRs is suitable to review or the PR would be too large to review
  • resolve in this one: init.pyi, dtypes.pyi _just.pyi

@guan404ming

This comment was marked as resolved.

def real(self: _HasDTypeWithReal[_ScalarT], /) -> ndarray[_ShapeT_co, dtype[_ScalarT]]: ...
@real.setter
@override
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I vaguely remember having seen somewhere that only the getter needs a @override... But I can't seem to find anything about that in the typing spec, so I might be wrong here 🤔.

@jorenham

This comment was marked as resolved.

@jorenham jorenham changed the title 🦾 enhance type annotation in __init__.pyi, dtypes.pyi and _just.pyi 🦾 add @override to __init__.pyi, dtypes.pyi and _just.pyi Mar 12, 2025
@jorenham jorenham added this to the v2.2.x.0 milestone Mar 12, 2025
@guan404ming
Copy link
Collaborator Author

guan404ming commented Mar 12, 2025

  • I think separate into 2-3 PRs is suitable to review or the PR would be too large to review all changes

Yea makes sense. But I can't merge when there are errors reported, so maybe just turn the reportImplicitOverride off again for now.

You're right but when I turn off the reportImplicitOverride the CI ran in the error:

note: unused allowlist entry numpy(\..+)?\.(un)?signedinteger.__hash__
note: unused allowlist entry numpy(\..+)?\.floating.__hash__
note: unused allowlist entry numpy(\..+)?\.complexfloating.__hash__

could see in this action: https://github.com/numpy/numtype/actions/runs/13815493808/job/38647487183

currently investigating the cause of the error, do u have any idea about this error? 🧑‍💻

@jorenham
Copy link
Member

jorenham commented Mar 12, 2025

  • I think separate into 2-3 PRs is suitable to review or the PR would be too large to review all changes

Yea makes sense. But I can't merge when there are errors reported, so maybe just turn the reportImplicitOverride off again for now.

You're right but when I turn off the reportImplicitOverride the CI ran in the error:

note: unused allowlist entry numpy(\..+)?\.(un)?signedinteger.__hash__
note: unused allowlist entry numpy(\..+)?\.floating.__hash__
note: unused allowlist entry numpy(\..+)?\.complexfloating.__hash__

could see in this action: numpy/numtype/actions/runs/13815493808/job/38647487183

currently investigating the cause of the error, do u have any idea about this error? 🧑‍💻

This probably has something to do with python/mypy#18622, which apparently can be worked around by applying @override somewhere 🤷🏻.

Either way, it's good news I suppose.

I'm not able to reproduce it though 🤔
https://mypy-play.net/?mypy=latest&python=3.13&flags=strict%2Clocal-partial-types&gist=0ca4e075345f6e7af84f47d3bc0c8b28


edit:

TLDR; On main, if you remove these allowlist entries and run stubtest, you'll see errors like

error: numpy.floating.__hash__ is not a function
Stub: in file src/numpy-stubs/__init__.pyi:5784
def (numpy.floating[_NBitT`1 = Any]) -> int
Runtime:
None

and apparently one of the added @override's makes these errors go away for some reason

@guan404ming
Copy link
Collaborator Author

WHYYY? 🤷🏻

@guan404ming guan404ming force-pushed the enable-reportImplicitOverride branch from 235094b to 1295b51 Compare March 12, 2025 16:56
@jorenham
Copy link
Member

jorenham commented Mar 12, 2025

WHYYY? 🤷🏻

I'm guessing it has to do with the position of the moon with respect to saturn, or maybe aliens.

@guan404ming
Copy link
Collaborator Author

guan404ming commented Mar 12, 2025

@jorenham
Copy link
Member

You're right.🌝 astronomy.com/observing/sky-this-month-march-2025

🤣

@jorenham jorenham merged commit fbb9a84 into numpy:main Mar 12, 2025
21 checks passed
@guan404ming guan404ming deleted the enable-reportImplicitOverride branch March 13, 2025 14:12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants