diff options
author | Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> | 2021-10-07 08:29:58 +0200 |
---|---|---|
committer | Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> | 2021-10-07 09:18:50 +0200 |
commit | e4d1c7781fcd762646c77449690491597c2be82f (patch) | |
tree | 64c6713873f4a213023cae4d76ea1a8b420a0ed9 /numpy/lib | |
parent | 8d2ddb53a9dae2d90a752ad4995c30817049fe06 (diff) | |
download | numpy-e4d1c7781fcd762646c77449690491597c2be82f.tar.gz |
DOC: Remove references to Python 2
Diffstat (limited to 'numpy/lib')
-rw-r--r-- | numpy/lib/_iotools.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/numpy/lib/_iotools.py b/numpy/lib/_iotools.py index a576925d6..4a5ac1285 100644 --- a/numpy/lib/_iotools.py +++ b/numpy/lib/_iotools.py @@ -23,8 +23,7 @@ def _decode_line(line, encoding=None): Returns ------- - decoded_line : unicode - Unicode in Python 2, a str (unicode) in Python 3. + decoded_line : str """ if type(line) is bytes: |