diff options
author | Seth Troisi <sethtroisi@google.com> | 2020-01-23 16:49:01 -0800 |
---|---|---|
committer | Seth Troisi <sethtroisi@google.com> | 2020-01-23 16:52:25 -0800 |
commit | 823f6819dd86e75f772a3a725996773dd6b688e2 (patch) | |
tree | 85b754adb9f658fea27e9b7c4eeb383c16b1a1fd /numpy/lib/tests/test_mixins.py | |
parent | 68224f43d09393c1981bb83ee3c13a5158d2817c (diff) | |
download | numpy-823f6819dd86e75f772a3a725996773dd6b688e2.tar.gz |
MAINT: Remove Python2 workarounds
Diffstat (limited to 'numpy/lib/tests/test_mixins.py')
-rw-r--r-- | numpy/lib/tests/test_mixins.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/numpy/lib/tests/test_mixins.py b/numpy/lib/tests/test_mixins.py index a9a0c9081..632058763 100644 --- a/numpy/lib/tests/test_mixins.py +++ b/numpy/lib/tests/test_mixins.py @@ -80,7 +80,6 @@ _ALL_BINARY_OPERATORS = [ operator.mul, operator.truediv, operator.floordiv, - # TODO: test div on Python 2, only operator.mod, divmod, pow, |