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 erickt
Recipients erickt
Date 2009-03-08.23:52:57
SpamBayes Score 4.7690127e-09
Marked as misclassified No
Message-id <1236556380.35.0.110625961105.issue5449@psf.upfronthosting.co.za>
In-reply-to
Content
I noticed that it was possible to specify arbitrary arguments to 
io.BytesIO:

>>> io.BytesIO(b'foo', foo=1)
<_io.BytesIO object at 0x430150>

But io.StringIO doesn't:

>>> io.StringIO('foo', foo=1)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: 'foo' is an invalid keyword argument for this function

So, I've attached a little patch that uses the same technique 3.1a1 uses 
to parse the arguments. One thing to be aware of is that I named the 
kwarg "intial_bytes" just like http://docs.python.org/3.0/library/io.html#io.BytesIO instead of 
"inital_value" like io.StringIO. I'm not sure if it'd be desirable to be 
consistent between the two.
History
Date User Action Args
2009-03-08 23:53:00ericktsetrecipients: + erickt
2009-03-08 23:53:00ericktsetmessageid: <1236556380.35.0.110625961105.issue5449@psf.upfronthosting.co.za>
2009-03-08 23:52:58ericktlinkissue5449 messages
2009-03-08 23:52:58ericktcreate