Skip to content

Commit 9d042ad

Browse files
[3.15] gh-149219: Test frozendict in Lib/test/test_crossinterp.py (GH-149220) (#150186)
gh-149219: Test `frozendict` in `Lib/test/test_crossinterp.py` (GH-149220) (cherry picked from commit c35b0f2) Co-authored-by: sobolevn <mail@sobolevn.me>
1 parent a56a271 commit 9d042ad

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)