[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
- Previous message: [Python-Dev] Summary of Python tracker Issues
- Next message: [Python-Dev] Is file.readlines(sizehint=N) broken on 2.7?
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
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/
- Previous message: [Python-Dev] Summary of Python tracker Issues
- Next message: [Python-Dev] Is file.readlines(sizehint=N) broken on 2.7?
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]