(self, other)
| 434 | pass |
| 435 | |
| 436 | def copy_to(self, other): |
| 437 | self.frozen = True |
| 438 | other.frozen = True |
| 439 | |
| 440 | for k in self.__annotations__.keys(): |
| 441 | v = getattr(self, k) |
| 442 | setattr(other, k, v) |
| 443 | |
| 444 | self.frozen = False |
| 445 | other.frozen = False |
| 446 | |
| 447 | def font(self, none_ok=False): |
| 448 | from ST2.importer import ct |
no outgoing calls
no test coverage detected