Skip to content

Commit 0bda96a

Browse files
authored
Remove mentioning of tostring method (#2309)
`numpy.ndarray.tostring` method was deprecated since `1.19` and is going to be removed in `2.3.0` release. This PR proposes to remove mentioning of `tostring` method in a list of rendered documentation and as TODO method for implementation in `dpnp.ndarray`.
1 parent a7dd8ba commit 0bda96a

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

doc/reference/ndarray.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,6 @@ Array conversion
134134

135135
dpnp.ndarray.item
136136
dpnp.ndarray.tolist
137-
dpnp.ndarray.tostring
138137
dpnp.ndarray.tobytes
139138
dpnp.ndarray.tofile
140139
dpnp.ndarray.dump

dpnp/dpnp_array.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1860,7 +1860,6 @@ def to_device(self, device, /, *, stream=None):
18601860
# 'tobytes',
18611861
# 'tofile',
18621862
# 'tolist',
1863-
# 'tostring',
18641863

18651864
def trace(self, offset=0, axis1=0, axis2=1, dtype=None, out=None):
18661865
"""

0 commit comments

Comments
 (0)