mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
added missing __pow__ and __divmod__ to the numpy user skeletons
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user