diff --git a/python/helpers/python-skeletons/numpy/core/multiarray.py b/python/helpers/python-skeletons/numpy/core/multiarray.py index 193c51c97686..0195bb121eb7 100644 --- a/python/helpers/python-skeletons/numpy/core/multiarray.py +++ b/python/helpers/python-skeletons/numpy/core/multiarray.py @@ -767,4 +767,24 @@ class ndarray(object): ------- out : ndarray """ + pass + + def __pow__(self, y): # real signature unknown; restored from __doc__ + """ + x.__pow__(y) <==> x**y + + Returns + ------- + out : ndarray + """ + pass + + def __divmod__(self, y): # real signature unknown; restored from __doc__ + """ + x.__divmod__(y) <==> x%y + + Returns + ------- + out : ndarray + """ pass \ No newline at end of file