8000 Update numpy/setup.py · numpy/numpy@7dad0c1 · GitHub
[go: up one dir, main page]

Skip to content

Commit 7dad0c1

Browse files
committed
Update numpy/setup.py
1 parent ddf19d4 commit 7dad0c1

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed

numpy/char/__init__.pyi

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,3 +53,6 @@ from numpy.core.defchararray import (
5353
compare_chararrays as compare_chararrays,
5454
chararray as chararray
5555
)
56+
57+
__all__: list[str]
58+
__path__: list[str]

numpy/rec/__init__.pyi

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,6 @@ from numpy.core.records import (
88
fromfile as fromfile,
99
array as array
1010
)
11+
12+
__all__: list[str]
13+
__path__: list[str]

numpy/setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ def configuration(parent_package='',top_path=None):
1717
config.add_subpackage('matrixlib')
1818
config.add_subpackage('polynomial')
1919
config.add_subpackage('random')
20+
config.add_subpackage('rec')
21+
config.add_subpackage('char')
2022
config.add_subpackage('testing')
2123
config.add_subpackage('typing')
2224
config.add_subpackage('_typing')

0 commit comments

Comments
 (0)
0