]> granicus.if.org Git - python/commitdiff
remove check for unicode
authorBenjamin Peterson <benjamin@python.org>
Fri, 16 Apr 2010 21:55:10 +0000 (21:55 +0000)
committerBenjamin Peterson <benjamin@python.org>
Fri, 16 Apr 2010 21:55:10 +0000 (21:55 +0000)
Lib/test/test_getargs.py

index e2c36dd803e84da7267a1165e27aa64bae3561e4..4ac5aa2f7abad61c2b268cd1a3cd9a058ea670d6 100644 (file)
@@ -21,9 +21,6 @@ class GetArgsTest(unittest.TestCase):
     # this test will fail because it does not test the right part of the
     # PyArg_ParseTuple() implementation.
     def test_with_marshal(self):
-        if not test_support.have_unicode:
-            return
-
         arg = unicode(r'\222', 'unicode-escape')
         self.assertRaises(UnicodeError, marshal.loads, arg)