Return the value of the user defined function. `x` and `pos` are passed through as-is.
(self, x, pos=None)
| 380 | self.func = func |
| 381 | |
| 382 | def __call__(self, x, pos=None): |
| 383 | """ |
| 384 | Return the value of the user defined function. |
| 385 | |
| 386 | `x` and `pos` are passed through as-is. |
| 387 | """ |
| 388 | return self.func(x, pos) |
| 389 | |
| 390 | |
| 391 | class FormatStrFormatter(Formatter): |