This issue tracker has been migrated to GitHub ,
and is currently read-only.
For more information,
see the GitHub FAQs in the Python's Developer Guide.
Created on 2013年10月19日 17:06 by py.user, last changed 2022年04月11日 14:57 by admin. This issue is now closed.
| Messages (2) | |||
|---|---|---|---|
| msg200445 - (view) | Author: py.user (py.user) * | Date: 2013年10月19日 17:06 | |
>>> print(open.__doc__)
open(file, mode='r', buffering=-1, encoding=None,
errors=None, newline=None, closefd=True, opener=None) -> file object
It would be handy to use
open('file.txt', 'r', 'utf-8')
instead of
open('file.txt', 'r', encoding='utf-8')
|
|||
| msg200447 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2013年10月19日 17:08 | |
That would be backward incompatible. |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:57:52 | admin | set | github: 63499 |
| 2013年10月19日 17:08:57 | ezio.melotti | set | status: open -> closed versions: - Python 3.3 nosy: + ezio.melotti messages: + msg200447 resolution: rejected stage: resolved |
| 2013年10月19日 17:06:22 | py.user | create | |