diff options
author | Seth Troisi <sethtroisi@google.com> | 2020-01-21 12:01:28 -0800 |
---|---|---|
committer | Seth Troisi <sethtroisi@google.com> | 2020-01-21 12:01:28 -0800 |
commit | 1383d5e851202bff77ea4377605a169a6170471e (patch) | |
tree | 2e618e2a124342633e43f1393a8a280debc88396 /numpy/lib/npyio.py | |
parent | 19b96a1635ee93c487d69ab88ac5ea3a6a14e79e (diff) | |
download | numpy-1383d5e851202bff77ea4377605a169a6170471e.tar.gz |
MAINT: Cleanup python2 references
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 29af488d2..48d4f7fa2 100644 --- a/numpy/lib/npyio.py +++ b/numpy/lib/npyio.py @@ -1319,7 +1319,7 @@ def savetxt(fname, X, fmt='%.18e', delimiter=' ', newline='\n', header='', delimiter = asstr(delimiter) class WriteWrap: - """Convert to unicode in py2 or to bytes on bytestream inputs. + """Convert to bytes on bytestream inputs. """ def __init__(self, fh, encoding): |