summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/set1.py
diff options
context:
space:
mode:
authorAndrew Scheller <github@loowis.durge.org>2014-04-07 01:41:24 +0100
committerAndrew Scheller <github@loowis.durge.org>2014-04-07 01:41:24 +0100
commit5e443f4b708ba2984f7f04bfec17ea90310b1123 (patch)
tree90569d7d4e8f8de3b800877776ad5df717eebc17 /tests/basics/set1.py
parent902d9552c551a14821fbf9a801eb2174fcd04dbb (diff)
parent2bfd2dc77091bee94723c36216dee652bcc8a054 (diff)
downloadmicropython-5e443f4b708ba2984f7f04bfec17ea90310b1123.tar.gz
micropython-5e443f4b708ba2984f7f04bfec17ea90310b1123.zip
Merge remote-tracking branch 'upstream/master' into makefile-tweaks
Diffstat (limited to 'tests/basics/set1.py')
-rw-r--r--tests/basics/set1.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/basics/set1.py b/tests/basics/set1.py
index c54fbd8379..399c33eb68 100644
--- a/tests/basics/set1.py
+++ b/tests/basics/set1.py
@@ -4,4 +4,4 @@ s = {1}
print(s)
s = {3, 4, 3, 1}
-print(s)
+print(sorted(s))