added missing __pow__ and __divmod__ to the numpy user skeletons

This commit is contained in:
Ekaterina Tuzova
2015-05-13 17:05:04 +03:00
parent 3548fd9a2e
commit 4e969d39e1
@@ -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