diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2015-03-20 19:53:12 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2015-03-20 19:53:12 -0400 |
| commit | 3ae00fea903b3403c1900e9b9f440305362dd26c (patch) | |
| tree | 42255fd7192a22b79d51be449aa9f2878a1482fe /lib/sqlalchemy | |
| parent | 1bcd99bec9eb0d17dba76214d278d6012f35f41b (diff) | |
| download | sqlalchemy-3ae00fea903b3403c1900e9b9f440305362dd26c.tar.gz | |
- Repaired the commit for issue #2771 which was inadvertently commented
out.
- add __backend__ to the dialect suite so that it runs on CI.
- will be 1.0.0b3
Diffstat (limited to 'lib/sqlalchemy')
| -rw-r--r-- | lib/sqlalchemy/__init__.py | 2 | ||||
| -rw-r--r-- | lib/sqlalchemy/dialects/mysql/base.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/sqlalchemy/__init__.py b/lib/sqlalchemy/__init__.py index 41ee656c7..94ab772b1 100644 --- a/lib/sqlalchemy/__init__.py +++ b/lib/sqlalchemy/__init__.py @@ -120,7 +120,7 @@ from .schema import ( from .inspection import inspect from .engine import create_engine, engine_from_config -__version__ = '1.0.0b2' +__version__ = '1.0.0b3' def __go(lcls): diff --git a/lib/sqlalchemy/dialects/mysql/base.py b/lib/sqlalchemy/dialects/mysql/base.py index 8727154f1..a74b20ac4 100644 --- a/lib/sqlalchemy/dialects/mysql/base.py +++ b/lib/sqlalchemy/dialects/mysql/base.py @@ -3351,7 +3351,7 @@ class _DecodingRowProxy(object): def __init__(self, rowproxy, charset): self.rowproxy = rowproxy - self.charset = charset #self._encoding_compat.get(charset, charset) + self.charset = self._encoding_compat.get(charset, charset) def __getitem__(self, index): item = self.rowproxy[index] |
