From: Mike Bayer Date: Sat, 2 Mar 2013 21:20:49 +0000 (-0500) Subject: - Fixed an import of "logging" in test_execute which was not X-Git-Tag: rel_0_8_0~15 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=133e8fd388bf68da768f9a938705b446598b6c3e;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git - Fixed an import of "logging" in test_execute which was not working on some linux platforms. Also in 0.7.11. - only need "logging.handlers" here, "logging" comes in implicitly --- 133e8fd388bf68da768f9a938705b446598b6c3e diff --cc doc/build/changelog/changelog_08.rst index 218700ba8f,218700ba8f..4d388b2b08 --- a/doc/build/changelog/changelog_08.rst +++ b/doc/build/changelog/changelog_08.rst @@@ -6,6 -6,6 +6,14 @@@ .. changelog:: :version: 0.8.0 ++ .. change:: ++ :tags: bug, tests ++ :tickets: 2669 ++ :pullreq: 41 ++ ++ Fixed an import of "logging" in test_execute which was not ++ working on some linux platforms. Also in 0.7.11. ++ .. change:: :tags: bug, orm :tickets: 2662 diff --cc test/engine/test_execute.py index 69507eabe3,f604adb82b..447324d6e9 --- a/test/engine/test_execute.py +++ b/test/engine/test_execute.py @@@ -13,7 -13,7 +13,7 @@@ import sqlalchemy as ts from sqlalchemy import testing from sqlalchemy.testing import engines from sqlalchemy.testing.engines import testing_engine - import logging -import logging, logging.handlers ++import logging.handlers from sqlalchemy.dialects.oracle.zxjdbc import ReturningParam from sqlalchemy.engine import result as _result, default from sqlalchemy.engine.base import Connection, Engine