app/django/db/models/sql/__init__.py
author Sverre Rabbelier <srabbelier@gmail.com>
Sat, 13 Dec 2008 13:09:06 +0000
changeset 734 1ebd40380aa5
parent 54 03e267d67478
permissions -rw-r--r--
Make the place of the rights declaration consistent Other code places it at the top, so we should do that in notification as well. Patch by: Sverre Rabbelier

from query import *
from subqueries import *
from where import AND, OR
from datastructures import EmptyResultSet

__all__ = ['Query', 'AND', 'OR', 'EmptyResultSet']