Manual py3k backport: [svn r74316] Issue #5449: Fix io.BytesIO to not accept arbitrary keywords
This commit is contained in:
parent
fa94e80f3b
commit
f7820c1626
|
@ -467,6 +467,11 @@ class PyBytesIOTest(MemoryTestMixin, MemorySeekTestMixin, unittest.TestCase):
|
||||||
self.assertEqual(memio.write(a), 10)
|
self.assertEqual(memio.write(a), 10)
|
||||||
self.assertEqual(memio.getvalue(), buf)
|
self.assertEqual(memio.getvalue(), buf)
|
||||||
|
|
||||||
|
def test_issue5449(self):
|
||||||
|
buf = self.buftype("1234567890")
|
||||||
|
self.ioclass(initial_bytes=buf)
|
||||||
|
self.assertRaises(TypeError, self.ioclass, buf, foo=None)
|
||||||
|
|
||||||
|
|
||||||
class TextIOTestMixin:
|
class TextIOTestMixin:
|
||||||
|
|
||||||
|
|
|
@ -766,9 +766,11 @@ bytesio_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
|
||||||
static int
|
static int
|
||||||
bytesio_init(bytesio *self, PyObject *args, PyObject *kwds)
|
bytesio_init(bytesio *self, PyObject *args, PyObject *kwds)
|
||||||
{
|
{
|
||||||
|
char *kwlist[] = {"initial_bytes", NULL};
|
||||||
PyObject *initvalue = NULL;
|
PyObject *initvalue = NULL;
|
||||||
|
|
||||||
if (!PyArg_ParseTuple(args, "|O:BytesIO", &initvalue))
|
if (!PyArg_ParseTupleAndKeywords(args, kwds, "|O:BytesIO", kwlist,
|
||||||
|
&initvalue))
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
/* In case, __init__ is called multiple times. */
|
/* In case, __init__ is called multiple times. */
|
||||||
|
|
Loading…
Reference in New Issue