(tag)
| 247 | actions = [] |
| 248 | |
| 249 | def make_decorator(tag): |
| 250 | actions.append('makedec' + tag) |
| 251 | def decorate(func): |
| 252 | actions.append('calldec' + tag) |
| 253 | return func |
| 254 | return decorate |
| 255 | |
| 256 | class NameLookupTracer (object): |
| 257 | def __init__(self, index): |