From 1f0e7a6120c3f97d73e6275aa71663ee5709dda5 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 a986c622a2..6c6e99580f 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