Get the keyed message's "info" as a string.
(self, key)
| 396 | return _ProxyFile(f) |
| 397 | |
| 398 | def get_info(self, key): |
| 399 | """Get the keyed message's "info" as a string.""" |
| 400 | subpath = self._lookup(key) |
| 401 | if self.colon in subpath: |
| 402 | return subpath.split(self.colon)[-1] |
| 403 | return '' |
| 404 | |
| 405 | def set_info(self, key, info: str): |
| 406 | """Set the keyed message's "info" string.""" |