[Python-checkins] r80121 - python/trunk/Lib/test/test_getargs.py

benjamin.peterson python-checkins at python.org
Fri Apr 16 23:55:10 CEST 2010


Author: benjamin.peterson
Date: Fri Apr 16 23:55:10 2010
New Revision: 80121

Log:
remove check for unicode

Modified:
   python/trunk/Lib/test/test_getargs.py

Modified: python/trunk/Lib/test/test_getargs.py
==============================================================================
--- python/trunk/Lib/test/test_getargs.py	(original)
+++ python/trunk/Lib/test/test_getargs.py	Fri Apr 16 23:55:10 2010
@@ -21,9 +21,6 @@
     # 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)
 


More information about the Python-checkins mailing list