diff options
author | Raymond Hettinger <python@rcn.com> | 2010-04-18 23:03:16 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2010-04-18 23:03:16 (GMT) |
commit | dbe961215a2cc9d9ef60aadabe9dc2fc94493e0d (patch) | |
tree | c75dad49a61eb44d31b7441350661ac619aaba95 /Lib/test/test_set.py | |
parent | 4ec45df9a724d2405b516967bc390f7d064f466c (diff) | |
download | cpython-dbe961215a2cc9d9ef60aadabe9dc2fc94493e0d.zip cpython-dbe961215a2cc9d9ef60aadabe9dc2fc94493e0d.tar.gz cpython-dbe961215a2cc9d9ef60aadabe9dc2fc94493e0d.tar.bz2 |
Issue 8436: set.__init__ accepts keyword args
Diffstat (limited to 'Lib/test/test_set.py')
-rw-r--r-- | Lib/test/test_set.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_set.py b/Lib/test/test_set.py index 2b43a16..3dde82f 100644 --- a/Lib/test/test_set.py +++ b/Lib/test/test_set.py @@ -49,6 +49,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) |