Skip to content

Commit 9366f94

Browse files
committed
gh-149219: Test frozendict in Lib/test/test_crossinterp.py
1 parent f4f82f0 commit 9366f94

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

Lib/test/test_crossinterp.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,10 @@ def ignore_byteswarning():
157157
{},
158158
{1: 7, 2: 8, 3: 9},
159159
{1: [1], 2: (2,), 3: {3: 4}},
160+
# frozendict
161+
frozendict(),
162+
frozendict({1: 7, 2: 8, 3: 9}),
163+
frozendict({1: [1], 2: (2,), 3: {3: 4}, 4: frozendict({5: 6})}),
160164
# set
161165
set(),
162166
{1, 2, 3},

0 commit comments

Comments
 (0)