diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2005-12-03 06:13:09 +0000 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2005-12-03 06:13:09 +0000 |
| commit | 906af22a56375a9d541bddcbd8aab2336c9ef299 (patch) | |
| tree | cda6ed5f1f2bee046f7f15562568b4a7d353aab2 /lib/sqlalchemy/__init__.py | |
| parent | 6d0bf6de0a3bfec095980404c07e78e1f7445fdf (diff) | |
| download | sqlalchemy-906af22a56375a9d541bddcbd8aab2336c9ef299.tar.gz | |
rearranging mapper/objectstore into a subdirectory, breaking up files since they are huge
Diffstat (limited to 'lib/sqlalchemy/__init__.py')
| -rw-r--r-- | lib/sqlalchemy/__init__.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/sqlalchemy/__init__.py b/lib/sqlalchemy/__init__.py index 152e1f3bd..7894f1777 100644 --- a/lib/sqlalchemy/__init__.py +++ b/lib/sqlalchemy/__init__.py @@ -15,9 +15,9 @@ # along with this library; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -import sqlalchemy.mapper as mapperlib -from sqlalchemy.schema import * -from sqlalchemy.sql import * -from sqlalchemy.types import * -from sqlalchemy.mapper import * -from sqlalchemy.engine import *
\ No newline at end of file +from engine import * +from types import * +from schema import * +from sql import * +import mapping as mapperlib +from mapping import * |
