(handler, value, context)
| 358 | |
| 359 | @staticmethod |
| 360 | def initialize_handler(handler, value, context): |
| 361 | try: # It's easier to ask for forgiveness than for permission |
| 362 | return handler(value, context=context) |
| 363 | except TypeError: |
| 364 | return handler(value) |
| 365 | |
| 366 | |
| 367 | class Local(Interface): |