(self, other)
| 254 | return BlobReference(self._name + other, self._from_net) |
| 255 | |
| 256 | def __radd__(self, other): |
| 257 | if not isinstance(other, str): |
| 258 | raise RuntimeError('Cannot add a non-string to BlobReference.') |
| 259 | return BlobReference(other + self._name, self._from_net) |
| 260 | |
| 261 | def Net(self): |
| 262 | return self._from_net |
nothing calls this directly
no test coverage detected