Return a shallow copy of the `Path`, which will share the vertices and codes with the source `Path`.
(self)
| 269 | return self._readonly |
| 270 | |
| 271 | def copy(self): |
| 272 | """ |
| 273 | Return a shallow copy of the `Path`, which will share the |
| 274 | vertices and codes with the source `Path`. |
| 275 | """ |
| 276 | return copy.copy(self) |
| 277 | |
| 278 | def __deepcopy__(self, memo): |
| 279 | """ |
no outgoing calls