diff options
author | Dave Hylands <dhylands@gmail.com> | 2014-04-07 11:19:51 -0700 |
---|---|---|
committer | Dave Hylands <dhylands@gmail.com> | 2014-04-07 11:38:45 -0700 |
commit | c4029e5079126585e4616f1d511d94318e1f1700 (patch) | |
tree | aec6bf2e02566892ad3f4e21bb33c3dcf3fcf7b5 /tests/basics/string-format-modulo.py | |
parent | 6827f9fc55e748a069a44f4e3681c26518e1dbca (diff) | |
download | micropython-c4029e5079126585e4616f1d511d94318e1f1700.tar.gz micropython-c4029e5079126585e4616f1d511d94318e1f1700.zip |
Add string formatting support for longlong and mpz.
Diffstat (limited to 'tests/basics/string-format-modulo.py')
-rw-r--r-- | tests/basics/string-format-modulo.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/basics/string-format-modulo.py b/tests/basics/string-format-modulo.py index b736e2a73f..8e58be18c8 100644 --- a/tests/basics/string-format-modulo.py +++ b/tests/basics/string-format-modulo.py @@ -53,6 +53,7 @@ print("%X" % 18) print("%X" % 18.0) print("%#x" % 18) print("%#X" % 18) +print("%#6o" % 18) print("%#6x" % 18) print("%#06x" % 18) print("%e" % 1.23456) |