Discussion:
[Python-checkins] cpython (3.3): test is cpython only
benjamin.peterson
2014-10-15 17:48:26 UTC
Permalink
https://hg.python.org/cpython/rev/cda907a02a80
changeset: 93079:cda907a02a80
branch: 3.3
parent: 93074:f963cc1f96cf
user: Benjamin Peterson <benjamin at python.org>
date: Wed Oct 15 13:39:46 2014 -0400
summary:
test is cpython only

files:
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
--- a/Lib/test/test_unicode.py
+++ b/Lib/test/test_unicode.py
@@ -662,6 +662,7 @@
'\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)
--
Repository URL: https://hg.python.org/cpython
Loading...