diff options
author | Benjamin Peterson <benjamin@python.org> | 2014-10-15 17:39:46 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2014-10-15 17:39:46 (GMT) |
commit | 4d856895bdbaecb2b9619178f9966dd48f48aded (patch) | |
tree | 39905c6a321244e7483f8b5b30aa2a8bd44c3b09 /Lib | |
parent | 1e211ff10dbab6da8fc7170bd09cd6fdaeec9dde (diff) | |
download | cpython-4d856895bdbaecb2b9619178f9966dd48f48aded.zip cpython-4d856895bdbaecb2b9619178f9966dd48f48aded.tar.gz cpython-4d856895bdbaecb2b9619178f9966dd48f48aded.tar.bz2 |
test is cpython only
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_unicode.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_unicode.py b/Lib/test/test_unicode.py index e1ccd5c..6ab9ed0 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) |