mirror of
https://github.com/python/cpython.git
synced 2026-05-04 09:31:02 +00:00
Merge 09df7afac8 into 68fe899feb
This commit is contained in:
commit
8d3dbbb69f
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