Clone this Field along with its children.
(self, keep_blobs=True)
| 143 | raise NotImplementedError('Field is an abstract class.') |
| 144 | |
| 145 | def clone(self, keep_blobs=True): |
| 146 | """Clone this Field along with its children.""" |
| 147 | raise NotImplementedError('Field is an abstract class.') |
| 148 | |
| 149 | def _set_parent(self, parent, relative_id): |
| 150 | self._parent = (parent, relative_id) |