diff options
author | Damien George <damien.p.george@gmail.com> | 2014-06-05 18:39:08 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-06-05 18:39:08 +0100 |
commit | c074cd38c365d069616b5620a72db900b15038af (patch) | |
tree | abf39fea998a91ad725fd00a3e971b41401879b2 /tests | |
parent | 75ce9256b2c70bceee6ced26ac7c7bcbd1f1d7f4 (diff) | |
parent | 7a6e09635a31fe10f0aba5906f8d5ca06a43c918 (diff) | |
download | micropython-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.py | 3 |
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) |