[issue9184] open() doc: default value for buffering is -1, not None

2010-07-11 Thread Georg Brandl
Georg Brandl added the comment: Well, of course I don't want to make you unhappy, but don't ever expect me to make such a useless change myself :) Especially when an issue is closed, nobody is going to look at it again except by accident. -- ___ P

[issue9184] open() doc: default value for buffering is -1, not None

2010-07-11 Thread Ezio Melotti
Ezio Melotti added the comment: I think it's still better to set it correctly. Even assuming that it will go away, if the stage is set correctly it will be easier to convert it to something else if necessary (e.g. if the stage is left on "patch review" it might be turned to "needs review" eve

[issue9184] open() doc: default value for buffering is -1, not None

2010-07-11 Thread Georg Brandl
Georg Brandl added the comment: Éric, I appreciate your wanting to help, but I don't think setting the stage after the fact makes much sense, especially since it is going away anyway... -- ___ Python tracker _

[issue9184] open() doc: default value for buffering is -1, not None

2010-07-11 Thread Éric Araujo
Changes by Éric Araujo : -- stage: -> committed/rejected ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:/

[issue9184] open() doc: default value for buffering is -1, not None

2010-07-11 Thread Georg Brandl
Georg Brandl added the comment: Applied as r82801. -- nosy: +georg.brandl resolution: -> accepted status: open -> closed ___ Python tracker ___ _

[issue9184] open() doc: default value for buffering is -1, not None

2010-07-06 Thread STINNER Victor
New submission from STINNER Victor : Examples: * open(filename) works * open(filename, buffering=-1) works * open(filename, buffering=None) fails In the code: * _pyio.open(): default value is -1, type is int, no default value in the docstring * _io.open(): default value is not specified (C