Return a deep copy of the `Path`. The `Path` will not be readonly, even if the source `Path` is. Parameters ---------- memo : dict, optional A dictionary to use for memoizing, passed to `copy.deepcopy`. Returns ------- P
(self, memo=None)
| 291 | return p |
| 292 | |
| 293 | def deepcopy(self, memo=None): |
| 294 | """ |
| 295 | Return a deep copy of the `Path`. The `Path` will not be readonly, |
| 296 | even if the source `Path` is. |
| 297 | |
| 298 | Parameters |
| 299 | ---------- |
| 300 | memo : dict, optional |
| 301 | A dictionary to use for memoizing, passed to `copy.deepcopy`. |
| 302 | |
| 303 | Returns |
| 304 | ------- |
| 305 | Path |
| 306 | A deep copy of the `Path`, but not readonly. |
| 307 | """ |
| 308 | return copy.deepcopy(self, memo) |
| 309 | |
| 310 | @classmethod |
| 311 | def make_compound_path_from_polys(cls, XY): |
no outgoing calls