We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a8f4b2 commit fc6205cCopy full SHA for fc6205c
ports/unix/coverage.c
@@ -220,6 +220,7 @@ static mp_obj_t extra_coverage(void) {
220
mp_printf(&mp_plat_print, "%X\n", 0x80000000); // should print unsigned
221
mp_printf(&mp_plat_print, "abc\n%"); // string ends in middle of format specifier
222
mp_printf(&mp_plat_print, "%%\n"); // literal % character
223
+ mp_printf(&mp_plat_print, ".%-3s.\n", "a"); // left adjust
224
}
225
226
// GC
tests/ports/unix/extra_coverage.py.exp
@@ -14,6 +14,7 @@ false true
14
80000000
15
abc
16
%
17
+.a .
18
# GC
19
0
20
0 commit comments