[issue5449] bug fix to prevent io.BytesIO from accepting arbitrary keyword arguments

2009-08-04 Thread Alexandre Vassalotti
Alexandre Vassalotti added the comment: Committed in r74316. Thanks! -- nosy: +alexandre.vassalotti resolution: -> accepted stage: -> committed/rejected status: open -> closed ___ Python tracker

[issue5449] bug fix to prevent io.BytesIO from accepting arbitrary keyword arguments

2009-03-13 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +benjamin.peterson, pitrou ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue5449] bug fix to prevent io.BytesIO from accepting arbitrary keyword arguments

2009-03-08 Thread Erick Tryzelaar
New submission from Erick Tryzelaar : 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 "", line 1, in Ty