Get the keyed message's "info" as a string.
(self, key)
| 403 | return _ProxyFile(f) |
| 404 | |
| 405 | def get_info(self, key): |
| 406 | """Get the keyed message's "info" as a string.""" |
| 407 | subpath = self._lookup(key) |
| 408 | if self.colon in subpath: |
| 409 | return subpath.split(self.colon)[-1] |
| 410 | return '' |
| 411 | |
| 412 | def set_info(self, key, info: str): |
| 413 | """Set the keyed message's "info" string.""" |