diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-03-02 16:20:49 -0500 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-03-02 16:20:49 -0500 |
| commit | 133e8fd388bf68da768f9a938705b446598b6c3e (patch) | |
| tree | fe838fc90a5cd22e6671e08bae68d7e2c47487af | |
| parent | a205a31bc234a574e586d5ae3885db8804ce4bb8 (diff) | |
| parent | 05eb72d431bdbf32d9787b9cdfafc651e5b335e5 (diff) | |
| download | sqlalchemy-133e8fd388bf68da768f9a938705b446598b6c3e.tar.gz | |
- 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
| -rw-r--r-- | doc/build/changelog/changelog_08.rst | 8 | ||||
| -rw-r--r-- | test/engine/test_execute.py | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/doc/build/changelog/changelog_08.rst b/doc/build/changelog/changelog_08.rst index 218700ba8..4d388b2b0 100644 --- a/doc/build/changelog/changelog_08.rst +++ b/doc/build/changelog/changelog_08.rst @@ -7,6 +7,14 @@ :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 --git a/test/engine/test_execute.py b/test/engine/test_execute.py index 69507eabe..447324d6e 100644 --- a/test/engine/test_execute.py +++ b/test/engine/test_execute.py @@ -13,7 +13,7 @@ import sqlalchemy as tsa from sqlalchemy import testing from sqlalchemy.testing import engines from sqlalchemy.testing.engines import testing_engine -import logging +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 |
