diff options
author | Eric Wieser <wieser.eric@gmail.com> | 2020-08-31 10:23:54 +0100 |
---|---|---|
committer | Eric Wieser <wieser.eric@gmail.com> | 2020-08-31 10:23:54 +0100 |
commit | 8a4fafa5278c2d894cf4efd40a342b33e941e373 (patch) | |
tree | 80638b083aeebdfd5a4dddd2793e71ef996fdf52 /numpy/lib/_iotools.py | |
parent | b2f8b7c5e0f66f48398d830cebd499a60a2e7120 (diff) | |
download | numpy-8a4fafa5278c2d894cf4efd40a342b33e941e373.tar.gz |
MAINT: Remove users of `numpy.compat.bytes`
Some more Python 2 cleanup.
Diffstat (limited to 'numpy/lib/_iotools.py')
-rw-r--r-- | numpy/lib/_iotools.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/_iotools.py b/numpy/lib/_iotools.py index 7560bf4da..f5368526d 100644 --- a/numpy/lib/_iotools.py +++ b/numpy/lib/_iotools.py @@ -5,7 +5,7 @@ __docformat__ = "restructuredtext en" import numpy as np import numpy.core.numeric as nx -from numpy.compat import asbytes, asunicode, bytes +from numpy.compat import asbytes, asunicode def _decode_line(line, encoding=None): |