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.

Author py.user
Recipients py.user
Date 2013-10-19.17:06:22
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1382202382.72.0.542427782667.issue19300@psf.upfronthosting.co.za>
In-reply-to
Content
>>> 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')
History
Date User Action Args
2013-10-19 17:06:22py.usersetrecipients: + py.user
2013-10-19 17:06:22py.usersetmessageid: <1382202382.72.0.542427782667.issue19300@psf.upfronthosting.co.za>
2013-10-19 17:06:22py.userlinkissue19300 messages
2013-10-19 17:06:22py.usercreate