summaryrefslogtreecommitdiffstatshomepage
path: root/tests
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-06-05 18:39:08 +0100
committerDamien George <damien.p.george@gmail.com>2014-06-05 18:39:08 +0100
commitc074cd38c365d069616b5620a72db900b15038af (patch)
treeabf39fea998a91ad725fd00a3e971b41401879b2 /tests
parent75ce9256b2c70bceee6ced26ac7c7bcbd1f1d7f4 (diff)
parent7a6e09635a31fe10f0aba5906f8d5ca06a43c918 (diff)
downloadmicropython-c074cd38c365d069616b5620a72db900b15038af.tar.gz
micropython-c074cd38c365d069616b5620a72db900b15038af.zip
Merge pull request #663 from Rosuav/floatpercentx
Remove tests that fail under CPython 3.5
Diffstat (limited to 'tests')
-rw-r--r--tests/float/string-format-modulo.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/float/string-format-modulo.py b/tests/float/string-format-modulo.py
index f2117f3565..549b09c1c0 100644
--- a/tests/float/string-format-modulo.py
+++ b/tests/float/string-format-modulo.py
@@ -4,9 +4,6 @@ print("%r" % 1.0)
print("%d" % 1.0)
print("%i" % 1.0)
print("%u" % 1.0)
-print("%x" % 18.0)
-print("%o" % 18.0)
-print("%X" % 18.0)
print("%e" % 1.23456)
print("%E" % 1.23456)