[issue7178] open function's buffering parameter is not completely doc'ed

2009-10-20 Thread Benjamin Peterson
Benjamin Peterson added the comment: Fixed in r75572. -- nosy: +benjamin.peterson resolution: -> fixed status: open -> closed ___ Python tracker ___

[issue7178] open function's buffering parameter is not completely doc'ed

2009-10-20 Thread kuhnsjohn
New submission from kuhnsjohn : it says: "Pass 0 to switch buffering off (only allowed in binary mode), 1 to set line buffering, and an integer > 1 for full buffering." The last section should say something like: "and an integer > 1 to specify the buffer size for full buffering." -- ass