1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
@r@
format d =~ ".x$";
@@
foo("...%@d@...")
@script:python@
d << r.d;
@@
d = "%s" % (d)
assert(d == "2x")
@r1@
format list d;
@@
foo("blah %@d@ xxx %d")
@script:python@
d << r1.d;
@@
d = "%s" % (d)
assert(d == "%d two %2x three %s")
@r2@
format list d;
@@
foo("%@d@ xxx %d")
@script:python@
d << r2.d;
@@
d = "%s" % (d)
assert(d == "blah %d two %2x three %s")
@r3@
format list[4] d;
@@
"xyz %@d@"
@script:python@
d << r3.d;
@@
d = "%s" % (d)
assert(d == "%d %d %0.2f %s three\\n")
@r4@
format list[2] d;
@@
"xyz %@d@ abc"
@script:python@
d << r4.d;
@@
d = "%s" % (d)
assert(d == "%d %0.2f")
@r5@
format d;
@@
- "xxx %@d@"
+ "yyy %@d@"
|