[Python-Dev] Is file.readlines(sizehint=N) broken on 2.7? (original) (raw)

Giampaolo RodolĂ  g.rodola at gmail.com
Fri Apr 5 19:15:45 CEST 2013


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/



More information about the Python-Dev mailing list