This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vstinner
Recipients amaury.forgeotdarc, gvanrossum, vstinner
Date 2008-10-14.12:41:42
SpamBayes Score 1.4251889e-05
Marked as misclassified No
Message-id <1223988103.64.0.367507004845.issue4121@psf.upfronthosting.co.za>
In-reply-to
Content
> Do you suggest that 'buffering' should be allowed 
> as positional argument?

No, I would prefer to keep also two positional arguments: file and 
mode. I hate open(filename, 'r', s): I don't know what is s, the 
buffering or the encoding? And I think that beginner would also be 
distribed by this third argument. Sometimes, it's easy to understand 
the 3 arguments of a function, like re.match("[a-z]", t, 
re.IGNORECASE). But for open(), I would prefer explicit arguments.

And so socket.makefile() should also be "fixed" to keep only 2 
positional arguments.

It's my opinion and if you really want to keep compatibility with 
Python2, keep the 3 positional arguments.
History
Date User Action Args
2008-10-14 12:41:43vstinnersetrecipients: + vstinner, gvanrossum, amaury.forgeotdarc
2008-10-14 12:41:43vstinnersetmessageid: <1223988103.64.0.367507004845.issue4121@psf.upfronthosting.co.za>
2008-10-14 12:41:42vstinnerlinkissue4121 messages
2008-10-14 12:41:42vstinnercreate