This commit is contained in:
sobolevn 2026-05-04 02:14:52 +05:30 committed by GitHub
commit 8d3dbbb69f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -157,6 +157,10 @@ def ignore_byteswarning():
{},
{1: 7, 2: 8, 3: 9},
{1: [1], 2: (2,), 3: {3: 4}},
# frozendict
frozendict(),
frozendict({1: 7, 2: 8, 3: 9}),
frozendict({1: [1], 2: (2,), 3: {3: 4}, 4: frozendict({5: 6})}),
# set
set(),
{1, 2, 3},