summaryrefslogtreecommitdiff
path: root/numpy/polynomial/hermite.py
diff options
context:
space:
mode:
authorRoss Barnowski <rossbar@berkeley.edu>2020-07-08 12:34:19 -0700
committerGitHub <noreply@github.com>2020-07-08 14:34:19 -0500
commit1c8efa16b296258e059a334e27e68428cf3cb48b (patch)
tree8b0a594ac82273326a8619b809c819a6b431b006 /numpy/polynomial/hermite.py
parent8bcf6bc30f33a6a36aea0eee2c72f06516b4b6bb (diff)
downloadnumpy-1c8efa16b296258e059a334e27e68428cf3cb48b.tar.gz
MAINT: Remove nickname from polynomial classes. (gh-16589)
* MAINT: Remove nickname from polynomial classes. The convenience classes derived from ABCPolyBase had a nickname attribute that was only used internally in the previous implementation of __str__. After the overhaul of __str__ in #15666, this attr is no longer used. * DOC: Add release note. Add release note to notify users of removal of the abstract property, and highlight users that may be affected by the change. * DOC: fixed rST in release note
Diffstat (limited to 'numpy/polynomial/hermite.py')
-rw-r--r--numpy/polynomial/hermite.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/numpy/polynomial/hermite.py b/numpy/polynomial/hermite.py
index 487d8dfdb..280cad39e 100644
--- a/numpy/polynomial/hermite.py
+++ b/numpy/polynomial/hermite.py
@@ -1675,7 +1675,6 @@ class Hermite(ABCPolyBase):
_fromroots = staticmethod(hermfromroots)
# Virtual properties
- nickname = 'herm'
domain = np.array(hermdomain)
window = np.array(hermdomain)
basis_name = 'H'