(self, memo)
| 370 | remainingName = remainingName[end + 1:].strip() |
| 371 | |
| 372 | def __deepcopy__(self, memo): |
| 373 | p = DamagePattern(self.emAmount, self.thermalAmount, self.kineticAmount, self.explosiveAmount) |
| 374 | p.rawName = "%s copy" % self.rawName |
| 375 | return p |
nothing calls this directly
no test coverage detected