mirror of
https://github.com/python/cpython.git
synced 2025-11-20 02:50:14 +00:00
Add test and fix for fromkeys() optional argument.
This commit is contained in:
parent
7492e4260e
commit
e3146f5aa3
2 changed files with 5 additions and 2 deletions
|
|
@ -293,6 +293,9 @@ class TestJointOps(unittest.TestCase):
|
|||
self.assertEqual(sum(elem.hash_count for elem in d), n)
|
||||
d3 = dict.fromkeys(frozenset(d))
|
||||
self.assertEqual(sum(elem.hash_count for elem in d), n)
|
||||
d3 = dict.fromkeys(frozenset(d), 123)
|
||||
self.assertEqual(sum(elem.hash_count for elem in d), n)
|
||||
self.assertEqual(d3, dict.fromkeys(d, 123))
|
||||
|
||||
class TestSet(TestJointOps):
|
||||
thetype = set
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue