Updated the documents

This commit is contained in:
Ross Lawley
2012-08-02 14:11:02 +01:00
parent 4b3cea9e78
commit 8ac9e6dc19
2 changed files with 18 additions and 2 deletions

View File

@@ -1861,6 +1861,17 @@ class QuerySet(object):
class QuerySetManager(object):
"""
The default QuerySet Manager.
Custom QuerySet Manager functions can extend this class and users can
add extra queryset functionality. Any custom manager methods must accept a
:class:`~mongoengine.Document` class as its first argument, and a
:class:`~mongoengine.queryset.QuerySet` as its second argument.
The method function should return a :class:`~mongoengine.queryset.QuerySet`
, probably the same one that was passed in, but modified in some way.
"""
get_queryset = None