[issue12642] Python2 documentation of the open() built-in function

2011-07-26 Thread Ezio Melotti
Ezio Melotti added the comment: Fixed, thanks for the report! -- nosy: +ezio.melotti resolution: -> fixed stage: needs patch -> committed/rejected status: open -> closed ___ Python tracker ___

[issue12642] Python2 documentation of the open() built-in function

2011-07-26 Thread Roundup Robot
Roundup Robot added the comment: New changeset 5da7924c4775 by Ezio Melotti in branch '2.7': #12642: fix args names in open() doc. http://hg.python.org/cpython/rev/5da7924c4775 -- nosy: +python-dev ___ Python tracker

[issue12642] Python2 documentation of the open() built-in function

2011-07-26 Thread Eli Bendersky
Changes by Eli Bendersky : -- nosy: +eli.bendersky ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.

[issue12642] Python2 documentation of the open() built-in function

2011-07-26 Thread R. David Murray
R. David Murray added the comment: The docs are correct in Python3. The docs for Python2 are not *wrong*, since they indicate only positional parameters and if you use positional parameters it works as documented. (I'm surprised that using keyword arguments works, but I haven't looked at the