(name, locals=locals,
formatarg=formatarg, formatvalue=formatvalue)
| 1373 | that are called to turn names and values into strings. The ninth |
| 1374 | argument is an optional function to format the sequence of arguments.""" |
| 1375 | def convert(name, locals=locals, |
| 1376 | formatarg=formatarg, formatvalue=formatvalue): |
| 1377 | return formatarg(name) + formatvalue(locals[name]) |
| 1378 | specs = [] |
| 1379 | for i in range(len(args)): |
| 1380 | specs.append(convert(args[i])) |
no outgoing calls
no test coverage detected