(self, section)
| 590 | |
| 591 | class inspect: |
| 592 | def GET(self, section): |
| 593 | if section == "/store": |
| 594 | return self.GET_store() |
| 595 | elif section == "/memcache": |
| 596 | return self.GET_memcache() |
| 597 | else: |
| 598 | raise web.notfound() |
| 599 | |
| 600 | def GET_store(self): |
| 601 | i = web.input(key=None, type=None, name=None, value=None) |
nothing calls this directly
no test coverage detected