diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-06-06 22:24:07 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-06-06 22:24:07 -0400 |
| commit | 9a34d9a83fa40a27c6e9ab5c275c48716895574c (patch) | |
| tree | 624a8b9aa32adfcfa7b616e6f3c1c5e7f8bdbd44 /lib/sqlalchemy/__init__.py | |
| parent | 2291c0a59a626abc1c23a3ba16b72574de2d3e98 (diff) | |
| download | sqlalchemy-9a34d9a83fa40a27c6e9ab5c275c48716895574c.tar.gz | |
- Adjusted the pyodbc dialect such that bound
values are passed as bytes and not unicode
if the "Easysoft" unix drivers are detected.
This is the same behavior as occurs with
FreeTDS. Easysoft appears to segfault
if Python unicodes are passed under
certain circumstances.
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 5da63c9af..cf7ebd22c 100644 --- a/lib/sqlalchemy/__init__.py +++ b/lib/sqlalchemy/__init__.py @@ -117,6 +117,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.7.1' +__version__ = '0.7.2' del inspect, sys |
