From 231e735c07db00dbb6f20f4459cd9da93af4c201 Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Wed, 27 Feb 2008 02:15:41 +0000 Subject: queryset-refactor: Moved the Query subclasses into their own file. Trying to keep file lengths to something manageable. git-svn-id: http://code.djangoproject.com/svn/django/branches/queryset-refactor@7164 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/db/models/sql/__init__.py | 1 + 1 file changed, 1 insertion(+) (limited to 'django/db/models/sql/__init__.py') diff --git a/django/db/models/sql/__init__.py b/django/db/models/sql/__init__.py index ec40c03283..ef8706c9df 100644 --- a/django/db/models/sql/__init__.py +++ b/django/db/models/sql/__init__.py @@ -1,4 +1,5 @@ from query import * +from subqueries import * from where import AND, OR __all__ = ['Query', 'AND', 'OR'] -- cgit v1.3