[issue15572] Python2 documentation of the file() built-in function

2012-08-07 Thread Roundup Robot
Roundup Robot added the comment: New changeset db1b4aab53eb by Benjamin Peterson in branch '2.7': make documented file() kw names and actual ones agree (closes #15572) http://hg.python.org/cpython/rev/db1b4aab53eb -- nosy: +python-dev resolution: -> fixed stage: -> committed/rejected s

[issue15572] Python2 documentation of the file() built-in function

2012-08-07 Thread Daniel Ellis
Daniel Ellis added the comment: I've updated the documentation. This is my first patch, so please let me know if I've done something wrong. -- keywords: +patch nosy: +Daniel.Ellis Added file: http://bugs.python.org/file26721/file_update.patch ___ Py

[issue15572] Python2 documentation of the file() built-in function

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

[issue15572] Python2 documentation of the file() built-in function

2012-08-07 Thread Cherniavsky Beni
New submission from Cherniavsky Beni: [followup for issue 12642 which only fixed it for open()] http://docs.python.org/library/functions.html#file says the arg names are: file(filename[, mode[, bufsize]]) but in practice they are: file(name[, mode[, buffering]]) -- assignee: docs@py