app/django/db/models/sql/__init__.py
author Sverre Rabbelier <srabbelier@gmail.com>
Tue, 24 Feb 2009 23:11:15 +0000
changeset 1497 1387f0d2cf45
parent 54 03e267d67478
permissions -rw-r--r--
Pass the seed to _constructResponse This way _editContext has access to it; this will be used by the commenting system. Patch by: Sverre Rabbelier

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

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