diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-02-12 18:00:45 -0500 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-02-12 18:00:45 -0500 |
| commit | 53aab63b6c24dfdcc249ada5c9d712dc42e5ae40 (patch) | |
| tree | 04d0b282c7b5e2c43b2e46a0d87c242521dc3545 /lib/sqlalchemy/__init__.py | |
| parent | de9ec22de972ec66f07db8b745108c6248bec6ad (diff) | |
| download | sqlalchemy-53aab63b6c24dfdcc249ada5c9d712dc42e5ae40.tar.gz | |
- remove some remaining sys.modules shenanigansrel_0_7b1
- The "sqlalchemy.exceptions" alias in sys.modules
has been removed. Base SQLA exceptions are
available via "from sqlalchemy import exc".
The "exceptions" alias for "exc" remains in
"sqlalchemy" for now, it's just not patched into
sys.modules.
Diffstat (limited to 'lib/sqlalchemy/__init__.py')
| -rw-r--r-- | lib/sqlalchemy/__init__.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/sqlalchemy/__init__.py b/lib/sqlalchemy/__init__.py index d54afa41c..d76afa49c 100644 --- a/lib/sqlalchemy/__init__.py +++ b/lib/sqlalchemy/__init__.py @@ -8,7 +8,6 @@ import inspect import sys import sqlalchemy.exc as exceptions -sys.modules['sqlalchemy.exceptions'] = exceptions from sqlalchemy.sql import ( alias, |
