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/npyio.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/npyio.py')
-rw-r--r-- | numpy/lib/npyio.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/npyio.py b/numpy/lib/npyio.py index cc3465cc6..d1a29ffad 100644 --- a/numpy/lib/npyio.py +++ b/numpy/lib/npyio.py @@ -23,7 +23,7 @@ from ._iotools import ( ) from numpy.compat import ( - asbytes, asstr, asunicode, bytes, os_fspath, os_PathLike, + asbytes, asstr, asunicode, os_fspath, os_PathLike, pickle, contextlib_nullcontext ) |