(self)
| 591 | return self.config.get(key, default) |
| 592 | |
| 593 | def __repr__(self): |
| 594 | cb = self.get_undecorated_callback() |
| 595 | return '<%s %s -> %s:%s>' % (self.method, self.rule, cb.__module__, cb.__name__) |
| 596 | |
| 597 | ############################################################################### |
| 598 | # Application Object ########################################################### |
nothing calls this directly
no test coverage detected