summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_sys.py
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2011-09-28 21:18:19 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2011-09-28 21:18:19 (GMT)
commit48a2f8fd972205688a1011348100bdb482c81836 (patch)
tree09f86d9cdf88c75688bc836c78e54ea88d365371 /Lib/test/test_sys.py
parent506f5927691e0088adc7ac6e6d7b43ad78f1576b (diff)
downloadcpython-48a2f8fd972205688a1011348100bdb482c81836.zip
cpython-48a2f8fd972205688a1011348100bdb482c81836.tar.gz
cpython-48a2f8fd972205688a1011348100bdb482c81836.tar.bz2
#13054: sys.maxunicode is now always 0x10FFFF.
Diffstat (limited to 'Lib/test/test_sys.py')
-rw-r--r--Lib/test/test_sys.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py
index 0b7bbf1..c99f4d7 100644
--- a/Lib/test/test_sys.py
+++ b/Lib/test/test_sys.py
@@ -447,6 +447,7 @@ class SysModuleTest(unittest.TestCase):
self.assertIsInstance(sys.maxsize, int)
self.assertIsInstance(sys.maxunicode, int)
+ self.assertEqual(sys.maxunicode, 0x10FFFF)
self.assertIsInstance(sys.platform, str)
self.assertIsInstance(sys.prefix, str)
self.assertIsInstance(sys.version, str)