summaryrefslogtreecommitdiff
path: root/numpy/polynomial/_polybase.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/polynomial/_polybase.py')
-rw-r--r--numpy/polynomial/_polybase.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/polynomial/_polybase.py b/numpy/polynomial/_polybase.py
index aad147388..39f5fac31 100644
--- a/numpy/polynomial/_polybase.py
+++ b/numpy/polynomial/_polybase.py
@@ -64,8 +64,8 @@ class ABCPolyBase(object):
# Not hashable
__hash__ = None
- # Don't let participate in array operations. Value doesn't matter.
- __array_priority__ = 1000
+ # Opt out of numpy ufuncs and Python ops with ndarray subclasses.
+ __array_ufunc__ = None
# Limit runaway size. T_n^m has degree n*m
maxpower = 100