(name, locals=locals,
formatarg=formatarg, formatvalue=formatvalue)
| 1397 | that are called to turn names and values into strings. The ninth |
| 1398 | argument is an optional function to format the sequence of arguments.""" |
| 1399 | def convert(name, locals=locals, |
| 1400 | formatarg=formatarg, formatvalue=formatvalue): |
| 1401 | return formatarg(name) + formatvalue(locals[name]) |
| 1402 | specs = [] |
| 1403 | for i in range(len(args)): |
| 1404 | specs.append(convert(args[i])) |
no outgoing calls
no test coverage detected
searching dependent graphs…