File tree 1 file changed +6
-2
lines changed
src/array_api_stubs/_draft
1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -869,7 +869,7 @@ def conj(x: array, /) -> array:
869
869
Parameters
870
870
----------
871
871
x: array
872
- input array. Should have a complex floating-point data type.
872
+ input array. Must have a numeric data type.
873
873
874
874
Returns
875
875
-------
@@ -879,6 +879,8 @@ def conj(x: array, /) -> array:
879
879
Notes
880
880
-----
881
881
882
+ - Whether the returned array and the input array share the same underlying memory is unspecified and thus implementation-defined.
883
+
882
884
.. versionadded:: 2022.12
883
885
"""
884
886
@@ -2346,7 +2348,7 @@ def real(x: array, /) -> array:
2346
2348
Parameters
2347
2349
----------
2348
2350
x: array
2349
- input array. Should have a complex floating-point data type.
2351
+ input array. Must have a numeric data type.
2350
2352
2351
2353
Returns
2352
2354
-------
@@ -2356,6 +2358,8 @@ def real(x: array, /) -> array:
2356
2358
Notes
2357
2359
-----
2358
2360
2361
+ - Whether the returned array and the input array share the same underlying memory is unspecified and thus implementation-defined.
2362
+
2359
2363
.. versionadded:: 2022.12
2360
2364
"""
2361
2365
You can’t perform that action at this time.
0 commit comments