issue I'm not exactly sure of what nature it is
callable_(*args, **kwargs)
assert False, "Callable did not raise an exception"
except except_cls, e:
- assert re.search(msg, unicode(e)), u"%r !~ %s" % (msg, e)
+ assert re.search(msg, unicode(e), re.UNICODE), u"%r !~ %s" % (msg, e)
print unicode(e).encode('utf-8')
def fail(msg):
schema.CreateTable(t1).compile
)
+ # there's some unicode issue in the assertion
+ # regular expression that appears to be resolved
+ # in 2.6, not exactly sure what it is
+ @testing.requires.python26
def test_reraise_of_column_spec_issue_unicode(self):
MyType = self._illegal_type_fixture()
t1 = Table('t', MetaData(),