summaryrefslogtreecommitdiffstatshomepage
path: root/tests/float/string-format-modulo.py
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-06-05 19:44:54 +0100
committerDamien George <damien.p.george@gmail.com>2014-06-05 19:44:54 +0100
commitd4c2bddd0c768da12d0cefd3c405b10e75fa5aa9 (patch)
tree9ea99b56e2d86d20f785cbfbeced2645a2bcfeb0 /tests/float/string-format-modulo.py
parentf675ff39576137e44a2fa6416619fe9a59cf2a0b (diff)
downloadmicropython-d4c2bddd0c768da12d0cefd3c405b10e75fa5aa9.tar.gz
micropython-d4c2bddd0c768da12d0cefd3c405b10e75fa5aa9.zip
py: Raise TypeError when trying to format non-int with %x,%o,%X.
This behaviour follows Python 3.5 standard (in 3.4 it's a DeprecationWarning which we'd rather make a TypeError).
Diffstat (limited to 'tests/float/string-format-modulo.py')
-rw-r--r--tests/float/string-format-modulo.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/float/string-format-modulo.py b/tests/float/string-format-modulo.py
index 549b09c1c0..ddca0b5555 100644
--- a/tests/float/string-format-modulo.py
+++ b/tests/float/string-format-modulo.py
@@ -5,6 +5,12 @@ print("%d" % 1.0)
print("%i" % 1.0)
print("%u" % 1.0)
+# these 3 have different behaviour in Python 3.x versions
+# uPy raises a TypeError, following Python 3.5 (earlier versions don't)
+#print("%x" % 18.0)
+#print("%o" % 18.0)
+#print("%X" % 18.0)
+
print("%e" % 1.23456)
print("%E" % 1.23456)
print("%f" % 1.23456)