Skip to content

Commit c76aaee

Browse files
committed
Add missing functions in _array_module._top_level_attrs
1 parent 6463307 commit c76aaee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

array_api_tests/_array_module.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def __repr__(self):
6262
]
6363
_constants = ["e", "inf", "nan", "pi"]
6464
_funcs = [f.__name__ for funcs in stubs.category_to_funcs.values() for f in funcs]
65-
_funcs += ["take", "isdtype"] # TODO: bump spec and update array-api-tests to new spec layout
65+
_funcs += ["take", "isdtype", "conj", "imag", "real"] # TODO: bump spec and update array-api-tests to new spec layout
6666
_top_level_attrs = _dtypes + _constants + _funcs + stubs.EXTENSIONS
6767

6868
for attr in _top_level_attrs:

0 commit comments

Comments
 (0)