From 0bceb861bffc40d22f1bb75517410be20446cd1d Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Wed, 15 Dec 2010 13:25:16 -0500 Subject: [PATCH] - fix broken py3k block --- test/sql/test_types.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/sql/test_types.py b/test/sql/test_types.py index 0ded87ab18..cb478af368 100644 --- a/test/sql/test_types.py +++ b/test/sql/test_types.py @@ -514,13 +514,12 @@ class UnicodeTest(TestBase, AssertsExecutionResults): s = String() uni = s.dialect_impl(unicode_engine.dialect).bind_processor(unicode_engine.dialect) - # Py3K # this is not the unicode type - no warning + # Py3K #uni(b'x') #assert_raises(exc.SAWarning, uni, b'x') #assert isinstance(uni(unicodedata), bytes) # Py2K - # this is not the unicode type - no warning uni('x') assert isinstance(uni(unicodedata), str) # end Py2K -- 2.47.2