(self)
| 284 | return rval |
| 285 | |
| 286 | def inputs(self): |
| 287 | # -- this function gets called a lot and it's not 100% safe to cache |
| 288 | # so the if/else is a small optimization |
| 289 | if self.named_args: |
| 290 | rval = self.pos_args + [v for (k, v) in self.named_args] |
| 291 | else: |
| 292 | rval = self.pos_args |
| 293 | return rval |
| 294 | |
| 295 | @property |
| 296 | def arg(self): |
no outgoing calls