(self, other)
| 934 | raise ValueError("Shapes %s and %s are not compatible" % (self, other)) |
| 935 | |
| 936 | def __add__(self, other): |
| 937 | if not isinstance(other, TensorShape): |
| 938 | other = TensorShape(other) |
| 939 | return self.concatenate(other) |
| 940 | |
| 941 | def __radd__(self, other): |
| 942 | if not isinstance(other, TensorShape): |
nothing calls this directly
no test coverage detected