summaryrefslogtreecommitdiff
path: root/numpy/polynomial/_polybase.py
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2018-08-31 15:34:02 -0500
committerGitHub <noreply@github.com>2018-08-31 15:34:02 -0500
commitddc0afc9de06bd21ca6facd60f2abe1d8ff5052a (patch)
tree5d6d94c40117d1bfaf76db74132f5a9ad6ed2e00 /numpy/polynomial/_polybase.py
parent1a0d8e10931a8257edfe759be3d58f43fccef430 (diff)
parent3f578660872b0e64acf5773a61c288eccf119607 (diff)
downloadnumpy-ddc0afc9de06bd21ca6facd60f2abe1d8ff5052a.tar.gz
Merge pull request #11850 from jeffyancey/update-polybase-comment
DOC: add comment to remove fn after python 2 support is dropped
Diffstat (limited to 'numpy/polynomial/_polybase.py')
-rw-r--r--numpy/polynomial/_polybase.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/polynomial/_polybase.py b/numpy/polynomial/_polybase.py
index dc72e7661..42db9bfd1 100644
--- a/numpy/polynomial/_polybase.py
+++ b/numpy/polynomial/_polybase.py
@@ -418,7 +418,7 @@ class ABCPolyBase(object):
return self.__class__(coef, self.domain, self.window)
def __div__(self, other):
- # set to __floordiv__, /, for now.
+ # this can be removed when python 2 support is dropped.
return self.__floordiv__(other)
def __truediv__(self, other):