From: Benjamin Peterson Date: Wed, 15 Oct 2014 17:39:46 +0000 (-0400) Subject: test is cpython only X-Git-Tag: v3.4.3rc1~464^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4d856895bdbaecb2b9619178f9966dd48f48aded;p=thirdparty%2FPython%2Fcpython.git test is cpython only --- diff --git a/Lib/test/test_unicode.py b/Lib/test/test_unicode.py index e1ccd5c1da40..6ab9ed0c3ed2 100644 --- a/Lib/test/test_unicode.py +++ b/Lib/test/test_unicode.py @@ -662,6 +662,7 @@ class UnicodeTest(string_tests.CommonTest, '\U0010FFFFx\U0010FFFF\U0010FFFF') @unittest.skipUnless(sys.maxsize == 2**31 - 1, "requires 32-bit system") + @support.cpython_only def test_case_operation_overflow(self): # Issue #22643 self.assertRaises(OverflowError, ("ü"*(2**32//12 + 1)).upper)