We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d72f165 commit 3f240fcCopy full SHA for 3f240fc
pandas/tests/io/formats/test_printing.py
@@ -82,6 +82,9 @@ def test_repr_dict(self):
82
def test_repr_mapping(self):
83
assert printing.pprint_thing(MyMapping()) == "{'a': 4, 'b': 4}"
84
85
+ def test_repr_frozenset(self):
86
+ assert printing.pprint_thing(frozenset([1, 2])) == "frozenset(1, 2)"
87
+
88
89
class TestFormatBase:
90
def test_adjoin(self):
0 commit comments