[Python-Dev] Is file.readlines(sizehint=N) broken on 2.7? (original) (raw)
INADA Naoki songofacandy at gmail.com
Fri Apr 5 19:27:07 CEST 2013
- Previous message: [Python-Dev] Is file.readlines(sizehint=N) broken on 2.7?
- Next message: [Python-Dev] Is file.readlines(sizehint=N) broken on 2.7?
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
The builtin open() was replaced with io.open(). It's difference between file.readlines() and io.IOBase.readlines().
On Sat, Apr 6, 2013 at 2:15 AM, Giampaolo RodolĂ <g.rodola at gmail.com> wrote:
with open('test-xxx', 'w') as f: f.write('aaa\nbbb\nccc') with open('test-xxx', 'r') as f: print(f.readlines(1))
On Python 3.3 I get: ['aaa\n'] ...while on Python 2.7: ['aaa\n', 'bbb\n', 'ccc']
Is this a bug or I'm missing something? --- Giampaolo https://code.google.com/p/pyftpdlib/ https://code.google.com/p/psutil/ https://code.google.com/p/pysendfile/
Python-Dev mailing list Python-Dev at python.org http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/python-dev/songofacandy%40gmail.com
-- INADA Naoki <songofacandy at gmail.com> -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://mail.python.org/pipermail/python-dev/attachments/20130406/e6022d7d/attachment.html>
- Previous message: [Python-Dev] Is file.readlines(sizehint=N) broken on 2.7?
- Next message: [Python-Dev] Is file.readlines(sizehint=N) broken on 2.7?
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]