(name, locals=locals,
formatarg=formatarg, formatvalue=formatvalue)
| 181 | |
| 182 | """ |
| 183 | def convert(name, locals=locals, |
| 184 | formatarg=formatarg, formatvalue=formatvalue): |
| 185 | return formatarg(name) + formatvalue(locals[name]) |
| 186 | specs = [strseq(arg, convert, join) for arg in args] |
| 187 | |
| 188 | if varargs: |
no outgoing calls
searching dependent graphs…