From 1c8efa16b296258e059a334e27e68428cf3cb48b Mon Sep 17 00:00:00 2001 From: Ross Barnowski Date: Wed, 8 Jul 2020 12:34:19 -0700 Subject: 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 --- numpy/polynomial/chebyshev.py | 1 - 1 file changed, 1 deletion(-) (limited to 'numpy/polynomial/chebyshev.py') diff --git a/numpy/polynomial/chebyshev.py b/numpy/polynomial/chebyshev.py index 431617414..d99fd98f5 100644 --- a/numpy/polynomial/chebyshev.py +++ b/numpy/polynomial/chebyshev.py @@ -2058,7 +2058,6 @@ class Chebyshev(ABCPolyBase): return cls(coef, domain=domain) # Virtual properties - nickname = 'cheb' domain = np.array(chebdomain) window = np.array(chebdomain) basis_name = 'T' -- cgit v1.2.1