Linaro Git Browser
Code Review
Sign In
review.linaro.org
/
lite
/
micropython
/
539681fffd96082ca3b5d18643d4f08f65c47170
/
.
/
tests
/
basics
/
dict_from_iter.py
blob: dc76801ff677190b6b39d145fbbfdf507ba5c4df [
file
] [
log
] [
blame
]
print
(
dict
([(
1
,
"foo"
)]))
d
=
dict
([(
"foo"
,
"foo2"
),
(
"bar"
,
"baz"
)])
print
(
sorted
(
d
.
keys
()))
print
(
sorted
(
d
.
values
()))
try
:
dict
(((
1
,),))
except
ValueError
:
print
(
"ValueError"
)
try
:
dict
(((
1
,
2
,
3
),))
except
ValueError
:
print
(
"ValueError"
)