8000 ENH: Add type annotations for the np.core.fromnumeric module: part 1/4 by BvB93 · Pull Request #67 · numpy/numpy-stubs · GitHub
[go: up one dir, main page]

Skip to content
This repository was archived by the owner on Jun 10, 2020. It is now read-only.

ENH: Add type annotations for the np.core.fromnumeric module: part 1/4 #67

Merged
merged 8 commits into from
Apr 24, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Downgraded black from 19.10b0 to 18.9b0
  • Loading branch information
Bas van Beek committed Apr 21, 2020
commit c2eeada1bc1bdcb785993acadb7aacf4b738a795
3 changes: 1 addition & 2 deletions numpy-stubs/__init__.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -889,8 +889,7 @@ def swapaxes(
axis2: int,
) -> ndarray: ...
def transpose(
a: _ArrayLike,
axes: Union[None, Sequence[int], ndarray] = ..., # TODO: ndarray[int]
a: _ArrayLike, axes: Union[None, Sequence[int], ndarray] = ... # TODO: ndarray[int]
) -> ndarray: ...
def partition(
a: _ArrayLike,
Expand Down
0