gh-149219: Test frozendict in Lib/test/test_crossinterp.py (#149220)

This commit is contained in:
sobolevn 2026-05-21 12:28:38 +03:00 committed by GitHub
parent 6dbf4ba403
commit c35b0f2b62
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},