10000 ENH: Make `np.number` generic with respect to its precision by BvB93 · Pull Request #17540 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

ENH: Make np.number generic with respect to its precision #17540

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

Merged
merged 12 commits into from
Oct 21, 2020
Merged
Prev Previous commit
Next Next commit
MAINT: Removed an unused import
  • Loading branch information
Bas van Beek committed Oct 17, 2020
commit 226b46bb422953b08e38756d3b9384988d3d35fc
2 changes: 1 addition & 1 deletion numpy/typing/_callable.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
_ComplexLike,
_NumberLike,
)
from . import NBitBase, _64Bit
from . import NBitBase

if sys.version_info >= (3, 8):
from typing import Protocol
Expand Down
0