(self, memo)
| 453 | node.lock = asyncio.Lock() |
| 454 | |
| 455 | def __deepcopy__(self, memo): |
| 456 | cls = self.__class__ |
| 457 | result = cls.__new__(cls) |
| 458 | memo[id(self)] = result |
| 459 | state = self.__getstate__() |
| 460 | |
| 461 | copied_state = copy.deepcopy(state, memo) |
| 462 | result.__setstate__(copied_state) |
| 463 | return result |
nothing calls this directly
no test coverage detected