diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-02-28 12:47:04 -0500 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-02-28 12:47:04 -0500 |
| commit | cf5113115047032dd46724d1e3f56dfca6503eee (patch) | |
| tree | 8039f3b00af76df71f2239fe20801a54dbd04402 /lib/sqlalchemy/__init__.py | |
| parent | a7f766d7c7fd6c53eb0019e32569e915b3f31eb4 (diff) | |
| download | sqlalchemy-cf5113115047032dd46724d1e3f56dfca6503eee.tar.gz | |
- Added a fully descriptive error message for the
case where Column is subclassed and _make_proxy()
fails to make a copy due to TypeError on the
constructor. The method _constructor should
be implemented in this case.
Diffstat (limited to 'lib/sqlalchemy/__init__.py')
| -rw-r--r-- | lib/sqlalchemy/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/__init__.py b/lib/sqlalchemy/__init__.py index a3c0c3238..2b4cfde0f 100644 --- a/lib/sqlalchemy/__init__.py +++ b/lib/sqlalchemy/__init__.py @@ -116,6 +116,6 @@ from sqlalchemy.engine import create_engine, engine_from_config __all__ = sorted(name for name, obj in locals().items() if not (name.startswith('_') or inspect.ismodule(obj))) -__version__ = '0.7b2' +__version__ = '0.7b3' del inspect, sys |
