mirror of
https://github.com/python/cpython.git
synced 2026-06-05 01:10:53 +00:00
gh-149219: Test frozendict in Lib/test/test_crossinterp.py (#149220)
This commit is contained in:
parent
6dbf4ba403
commit
c35b0f2b62
1 changed files with 4 additions and 0 deletions
|
|
@ -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},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue