We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a978d0 commit 669bcd1Copy full SHA for 669bcd1
1 file changed
python3/koans/about_sets.py
@@ -16,7 +16,8 @@ def test_empty_sets_have_different_syntax_to_populated_sets(self):
16
self.assertEqual(__, set())
17
18
def test_dictionaries_and_sets_use_same_curly_braces(self):
19
- # Note: Sets have only started using braces since Python 3
+ # Note: Literal sets using braces were introduced in python 3.
20
+ # They were also backported to python 2.7.
21
22
self.assertEqual(__, {1, 2, 3}.__class__)
23
self.assertEqual(__, {'one': 1, 'two': 2}.__class__)
0 commit comments