commit | dbe961215a2cc9d9ef60aadabe9dc2fc94493e0d | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Sun Apr 18 23:03:16 2010 +0000 |
committer | Raymond Hettinger <python@rcn.com> | Sun Apr 18 23:03:16 2010 +0000 |
tree | c75dad49a61eb44d31b7441350661ac619aaba95 | |
parent | 4ec45df9a724d2405b516967bc390f7d064f466c [diff] [blame] |
Issue 8436: set.__init__ accepts keyword args
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 @@ 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)