Saves the ancestor document. :param args: Arguments passed up to the ancestor Document's save method. :param kwargs: Keyword arguments passed up to the ancestor Document's save method.
(self, *args, **kwargs)
| 303 | return self._instance[self._name][-1] |
| 304 | |
| 305 | def save(self, *args, **kwargs): |
| 306 | """ |
| 307 | Saves the ancestor document. |
| 308 | |
| 309 | :param args: Arguments passed up to the ancestor Document's save |
| 310 | method. |
| 311 | :param kwargs: Keyword arguments passed up to the ancestor Document's |
| 312 | save method. |
| 313 | """ |
| 314 | self._instance.save(*args, **kwargs) |
| 315 | |
| 316 | def delete(self): |
| 317 | """ |