summaryrefslogtreecommitdiff
path: root/astroid
diff options
context:
space:
mode:
authorhippo91 <guillaume.peillex@gmail.com>2020-12-29 15:38:37 +0100
committerhippo91 <guillaume.peillex@gmail.com>2020-12-29 15:38:37 +0100
commitb1992e74c56df76246a894791ce40f62321f9fe2 (patch)
tree5e4792a640a3dea32bdb970ac1dc50a0e7db8cc5 /astroid
parent99d9c77cc276b1c5f5d76d91282d05b5df3a2c21 (diff)
downloadastroid-git-b1992e74c56df76246a894791ce40f62321f9fe2.tar.gz
Adds the ufunc degrees and radians
Diffstat (limited to 'astroid')
-rw-r--r--astroid/brain/brain_numpy_core_umath.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/astroid/brain/brain_numpy_core_umath.py b/astroid/brain/brain_numpy_core_umath.py
index e878a313..a6b24bf9 100644
--- a/astroid/brain/brain_numpy_core_umath.py
+++ b/astroid/brain/brain_numpy_core_umath.py
@@ -77,6 +77,7 @@ def numpy_core_umath_transform():
conjugate = FakeUfuncOneArg()
cosh = FakeUfuncOneArg()
deg2rad = FakeUfuncOneArg()
+ degrees = FakeUfuncOneArg()
exp2 = FakeUfuncOneArg()
expm1 = FakeUfuncOneArg()
fabs = FakeUfuncOneArg()
@@ -91,6 +92,7 @@ def numpy_core_umath_transform():
negative = FakeUfuncOneArg()
positive = FakeUfuncOneArg()
rad2deg = FakeUfuncOneArg()
+ radians = FakeUfuncOneArg()
reciprocal = FakeUfuncOneArg()
rint = FakeUfuncOneArg()
sign = FakeUfuncOneArg()