diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-04-16 21:55:10 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-04-16 21:55:10 (GMT) |
commit | e7ebdc2a6114844bc6ab4eda041f9cbeb0d76184 (patch) | |
tree | 96da71417ccec2d4abfdbcefe988f7c3afa1db0f | |
parent | 9642d60bd0b5118e3dc337a6bdcc361c9e6258a9 (diff) | |
download | cpython-e7ebdc2a6114844bc6ab4eda041f9cbeb0d76184.zip cpython-e7ebdc2a6114844bc6ab4eda041f9cbeb0d76184.tar.gz cpython-e7ebdc2a6114844bc6ab4eda041f9cbeb0d76184.tar.bz2 |
remove check for unicode
-rw-r--r-- | Lib/test/test_getargs.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Lib/test/test_getargs.py b/Lib/test/test_getargs.py index e2c36dd..4ac5aa2 100644 --- a/Lib/test/test_getargs.py +++ b/Lib/test/test_getargs.py @@ -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) |