Issue 8436: set.__init__ accepts keyword args
This commit is contained in:
parent
4ec45df9a7
commit
dbe961215a
|
@ -49,6 +49,7 @@ class TestJointOps(unittest.TestCase):
|
||||||
|
|
||||||
def test_new_or_init(self):
|
def test_new_or_init(self):
|
||||||
self.assertRaises(TypeError, self.thetype, [], 2)
|
self.assertRaises(TypeError, self.thetype, [], 2)
|
||||||
|
self.assertRaises(TypeError, set().__init__, a=1)
|
||||||
|
|
||||||
def test_uniquification(self):
|
def test_uniquification(self):
|
||||||
actual = sorted(self.s)
|
actual = sorted(self.s)
|
||||||
|
|
|
@ -1978,6 +1978,8 @@ set_init(PySetObject *self, PyObject *args, PyObject *kwds)
|
||||||
|
|
||||||
if (!PyAnySet_Check(self))
|
if (!PyAnySet_Check(self))
|
||||||
return -1;
|
return -1;
|
||||||
|
if (PySet_Check(self) && !_PyArg_NoKeywords("set()", kwds))
|
||||||
|
return -1;
|
||||||
if (!PyArg_UnpackTuple(args, Py_TYPE(self)->tp_name, 0, 1, &iterable))
|
if (!PyArg_UnpackTuple(args, Py_TYPE(self)->tp_name, 0, 1, &iterable))
|
||||||
return -1;
|
return -1;
|
||||||
set_clear_internal(self);
|
set_clear_internal(self);
|
||||||
|
|
Loading…
Reference in New Issue