From 7a6e09635a31fe10f0aba5906f8d5ca06a43c918 Mon Sep 17 00:00:00 2001 From: Chris Angelico Date: Wed, 4 Jun 2014 08:07:37 +1000 Subject: [PATCH] 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. --- tests/float/string-format-modulo.py | 3 --- 1 file changed, 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)