Issue 8436: set.__init__ accepts keyword args

This commit is contained in:
Raymond Hettinger 2010-04-18 22:57:57 +00:00
parent 9958c56eb0
commit 35b76027f9
2 changed files with 4 additions and 0 deletions

View File

@ -1,3 +1,4 @@
import unittest
from test import test_support
import gc
@ -47,6 +48,7 @@ class TestJointOps(unittest.TestCase):
def test_new_or_init(self):
self.assertRaises(TypeError, self.thetype, [], 2)
self.assertRaises(TypeError, set().__init__, a=1)
def test_uniquification(self):
actual = sorted(self.s)

View File

@ -1987,6 +1987,8 @@ set_init(PySetObject *self, PyObject *args, PyObject *kwds)
if (!PyAnySet_Check(self))
return -1;
if (PySet_Check(self) && !_PyArg_NoKeywords("set()", kwds))
return -1;
if (!PyArg_UnpackTuple(args, Py_TYPE(self)->tp_name, 0, 1, &iterable))
return -1;
set_clear_internal(self);