summaryrefslogtreecommitdiff
path: root/numpy/polynomial/polyutils.py
diff options
context:
space:
mode:
authorEric Wieser <wieser.eric@gmail.com>2020-01-06 12:11:25 +0000
committerEric Wieser <wieser.eric@gmail.com>2020-01-06 12:11:25 +0000
commit679c83407ca95eab7eec844e945a725b932fbb60 (patch)
treebe7f65c9ff3e4335aca57de874e0736c37a23988 /numpy/polynomial/polyutils.py
parentd7523e21aa65abb8ef58895c6bf3c768059f74aa (diff)
parentc28fc48328e9621160debae4d0d99feeff3b8fdf (diff)
downloadnumpy-679c83407ca95eab7eec844e945a725b932fbb60.tar.gz
Merge remote-tracking branch 'upstream/master' into remove-numpy.distutils.compat
Diffstat (limited to 'numpy/polynomial/polyutils.py')
-rw-r--r--numpy/polynomial/polyutils.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/numpy/polynomial/polyutils.py b/numpy/polynomial/polyutils.py
index 5dcfa7a7a..b65e88a83 100644
--- a/numpy/polynomial/polyutils.py
+++ b/numpy/polynomial/polyutils.py
@@ -43,8 +43,6 @@ Functions
mapparms parameters of the linear map between domains.
"""
-from __future__ import division, absolute_import, print_function
-
import operator
import functools
import warnings
@@ -80,7 +78,7 @@ class PolyDomainError(PolyError):
# Base class for all polynomial types
#
-class PolyBase(object):
+class PolyBase:
"""
Base class for all polynomial types.