[Python-Dev] Improve open() to support reading file starting with an unicode BOM (original) (raw)
"Martin v. Löwis" martin at v.loewis.de
Mon Jan 11 18:59:08 CET 2010
- Previous message: [Python-Dev] Improve open() to support reading file starting with an unicode BOM
- Next message: [Python-Dev] Summary of Python tracker Issues
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
I must say that I find this whole thing pretty obvious. 'BOM' is not an encoding.
That I certainly agree with.
That covers all usecases, is easy and obvious. Either open(file=foo, encoding=None) or open(file, encoding=encodingfrombom(file))
I can't see that open(file, encoding='BOM') has any benefit over this,
Well, it would have the advantage that Walter pointed out: you can implement it independent of the open() implementation, and even provide it in older versions of Python.
Regards, Martin
- Previous message: [Python-Dev] Improve open() to support reading file starting with an unicode BOM
- Next message: [Python-Dev] Summary of Python tracker Issues
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]