From 4e969d39e1ffdb9176e78a3852a8edb114a63e0a Mon Sep 17 00:00:00 2001 From: Ekaterina Tuzova Date: Wed, 13 May 2015 17:04:16 +0300 Subject: [PATCH] added missing __pow__ and __divmod__ to the numpy user skeletons --- .../python-skeletons/numpy/core/multiarray.py | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) 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