(self, add=None)
| 204 | return box |
| 205 | |
| 206 | def destroy(self, add=None): |
| 207 | if hasattr(self, 'httpd'): |
| 208 | self.httpd.shutdown() |
| 209 | if self.lockfile is not None and os.path.isfile(self.lockfile): |
| 210 | os.remove(self.lockfile) |
| 211 | |
| 212 | def get_expressions(self): |
| 213 | if len(self._expressions_raw) > 0: |
nothing calls this directly
no outgoing calls
no test coverage detected