[issue18315] Fix fileinput doc and docstrings (add 'buffer' in 2.7)

2013-06-28 Thread Terry J. Reedy
Terry J. Reedy added the comment: There was one missing 'bufsize' in 3.x also. -- resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker __

[issue18315] Fix fileinput doc and docstrings (add 'buffer' in 2.7)

2013-06-28 Thread Roundup Robot
Roundup Robot added the comment: New changeset 80b1c5b25ff0 by Terry Jan Reedy in branch '2.7': Issue #18315: Improve fileinput docs by adding 'bufsize' where missing and http://hg.python.org/cpython/rev/80b1c5b25ff0 New changeset 0760b58526ba by Terry Jan Reedy in branch '3.3': Issue #18315: Im

[issue18315] Fix fileinput doc and docstrings (add 'buffer' in 2.7)

2013-06-28 Thread Terry J. Reedy
Terry J. Reedy added the comment: I just remembered: the first list of a .py file docstring should be a one line summary of what the callable does. It should not give the signature because (unlike C function currently) help does that for us from the callable itself (using the inspect module).