Removes the given Document from the model, and sets Document.model=None.
(self, document)
| 928 | list.extend(self.documents, documents) |
| 929 | |
| 930 | def remove(self, document): |
| 931 | """ Removes the given Document from the model, and sets Document.model=None. |
| 932 | """ |
| 933 | self.__delitem__(self.documents.index(document)) |
| 934 | |
| 935 | def document(self, name): |
| 936 | """ Returns the Document with the given name (assuming document names are unique). |
no test coverage detected