summaryrefslogtreecommitdiff
path: root/test/sql/select.py
diff options
context:
space:
mode:
authorJason Kirtland <jek@discorporate.us>2007-08-21 01:31:23 +0000
committerJason Kirtland <jek@discorporate.us>2007-08-21 01:31:23 +0000
commit6228e72cb15be6e84260440d20369c91858b4640 (patch)
treee73b103dae905c13f3739bc4e94719974d72b9e1 /test/sql/select.py
parent83eb2431247ff3392a984f034fb3ffd009d81009 (diff)
downloadsqlalchemy-6228e72cb15be6e84260440d20369c91858b4640.tar.gz
- omitted 'table' and 'column' from 'from sqlalchemy import *'
- also omitted all modules and classes that aren't expicitly public - omitted 'Smallinteger' (small i), but it's still in schema - omitted NullType-related items from types.__all__ - patched up a few tests to use sql.table and sql.column, other related.
Diffstat (limited to 'test/sql/select.py')
-rw-r--r--test/sql/select.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/sql/select.py b/test/sql/select.py
index c075d4e3b..2d3f57954 100644
--- a/test/sql/select.py
+++ b/test/sql/select.py
@@ -2,6 +2,7 @@ import testbase
import re, operator
from sqlalchemy import *
from sqlalchemy import util
+from sqlalchemy.sql import table, column
from sqlalchemy.databases import sqlite, postgres, mysql, oracle, firebird, mssql
from testlib import *