Skip to content

Commit e7f1c9d

Browse files
Merge master into deprecated_out_arg
2 parents 7119aec + c9afa82 commit e7f1c9d

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

dpnp/dpnp_array.py

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,6 @@ def __array_namespace__(self, /, *, api_version=None):
173173

174174
return self._array_obj.__array_namespace__(api_version=api_version)
175175

176-
# '__array_prepare__',
177176
# '__array_priority__',
178177
# '__array_struct__',
179178

@@ -207,8 +206,6 @@ def __copy__(self):
207206
return self.copy(order="K")
208207

209208
# '__deepcopy__',
210-
# '__delattr__',
211-
# '__delitem__',
212209
# '__dir__',
213210
# '__divmod__',
214211

@@ -292,8 +289,6 @@ def __dlpack_device__(self, /):
292289

293290
return self._array_obj.__dlpack_device__()
294291

295-
# '__doc__',
296-
297292
def __eq__(self, other, /):
298293
r"""Return :math:`\text{self == value}`."""
299294
return dpnp.equal(self, other)
@@ -312,8 +307,6 @@ def __ge__(self, other, /):
312307
r"""Return :math:`\text{self >= value}`."""
313308
return dpnp.greater_equal(self, other)
314309

315-
# '__getattribute__',
316-
317310
def __getitem__(self, key, /):
318311
r"""Return :math:`\text{self[key]}`."""
319312
key = _get_unwrapped_index_key(key)
@@ -387,7 +380,6 @@ def __index__(self, /):
387380
"""Convert a zero-dimensional array to a Python int object."""
388381
return self._array_obj.__index__()
389382

390-
# '__init__',
391383
# '__init_subclass__',
392384

393385
def __int__(self, /):
@@ -552,8 +544,6 @@ def __rxor__(self, other, /):
552544
r"""Return :math:`\text{value ^ self}`."""
553545
return dpnp.bitwise_xor(other, self)
554546

555-
# '__setattr__',
556-
557547
def __setitem__(self, key, value, /):
558548
r"""Set :math:`\text{self[key]}` to a value."""
559549
key = _get_unwrapped_index_key(key)
@@ -576,8 +566,6 @@ def __sub__(self, other, /):
576566
r"""Return :math:`\text{self - value}`."""
577567
return dpnp.subtract(self, other)
578568

579-
# '__subclasshook__',
580-
581569
@property
582570
def __sycl_usm_array_interface__(self):
583571
"""

0 commit comments

Comments
 (0)