diff options
author | Chris Angelico <rosuav@gmail.com> | 2014-06-04 08:07:37 +1000 |
---|---|---|
committer | Chris Angelico <rosuav@gmail.com> | 2014-06-05 22:34:11 +1000 |
commit | 7a6e09635a31fe10f0aba5906f8d5ca06a43c918 (patch) | |
tree | 3c2209d9f2ccd64bc80a3d1d3cffdc4f2d549b12 /tests/float/string-format-modulo.py | |
parent | 1e82ef3ae8fd8c7570b3c2094fa8b129b354dcdd (diff) |
Remove tests that fail under CPython 3.5
See http://bugs.python.org/issue19995 for rationale. As micropython currently
aims for Python 3.3 compatibility I have not changed behaviour, but this
change allows the test suite to be run against a newer Python without having
spurious failures.
Diffstat (limited to 'tests/float/string-format-modulo.py')
-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 f2117f356..549b09c1c 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) |