(self, *fns)
| 216 | |
| 217 | |
| 218 | def through_functions(self, *fns): |
| 219 | for param in self.iterable_param: |
| 220 | param = param.rstrip().decode('utf-8') |
| 221 | |
| 222 | for fn in fns: |
| 223 | if fn(param): |
| 224 | break |
| 225 | |
| 226 | |
| 227 | def string_after_prefix(line, prefix, end=None): |