out.
- add __backend__ to the dialect suite so that it runs on CI.
- will be 1.0.0b3
.. include:: changelog_07.rst
:start-line: 5
+.. changelog::
+ :version: 1.0.0b3
+
+ .. change::
+ :tags: bug, mysql
+ :tickets: 2771
+
+ Repaired the commit for issue #2771 which was inadvertently commented
+ out.
+
+
.. changelog::
:version: 1.0.0b2
:released: March 20, 2015
from .inspection import inspect
from .engine import create_engine, engine_from_config
-__version__ = '1.0.0b2'
+__version__ = '1.0.0b3'
def __go(lcls):
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]
from sqlalchemy.testing import engines
import datetime
+
class DialectTest(fixtures.TestBase):
+ __backend__ = True
+
def test_ssl_arguments_mysqldb(self):
from sqlalchemy.dialects.mysql import mysqldb
dialect = mysqldb.dialect()