This website requires JavaScript.
Explore
Help
Sign In
mirrors
/
micropython
mirror of
https://github.com/micropython/micropython.git
Watch
1
Star
0
Fork
You've already forked micropython
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
936e25b164
micropython
/
tests
/
basics
/
set1.py
8 lines
66 B
Python
Raw
Normal View
History
Unescape
Escape
Add basic functionality tests for the Python bit.
2013-12-29 22:34:42 +00:00
# basic sets
s
=
{
1
}
print
(
s
)
s
=
{
3
,
4
,
3
,
1
}
tests: Fix tests with sets to print sorted set.
2014-04-07 00:42:09 +01:00
print
(
sorted
(
s
)
)