mirror of
https://github.com/izzy2lost/cpython.git
synced 2026-03-10 11:29:24 -07:00
36 lines
977 B
Python
36 lines
977 B
Python
|
|
import unittest
|
|||
|
|
import sys
|
|||
|
|
from test import support
|
|||
|
|
|
|||
|
|
class PEP3131Test(unittest.TestCase):
|
|||
|
|
|
|||
|
|
def test_valid(self):
|
|||
|
|
class T:
|
|||
|
|
รค = 1
|
|||
|
|
ยต = 2 # this is a compatibility character
|
|||
|
|
่ = 3
|
|||
|
|
x๓ = 4
|
|||
|
|
self.assertEqual(getattr(T, "\xe4"), 1)
|
|||
|
|
self.assertEqual(getattr(T, "\u03bc"), 2)
|
|||
|
|
self.assertEqual(getattr(T, '\u87d2'), 3)
|
|||
|
|
self.assertEqual(getattr(T, 'x\U000E0100'), 4)
|
|||
|
|
|
|||
|
|
def test_non_bmp_normalized(self):
|
|||
|
|
๐๐ซ๐ฆ๐ ๐ฌ๐ก๐ข = 1
|
|||
|
|
self.assertIn("Unicode", dir())
|
|||
|
|
|
|||
|
|
def test_invalid(self):
|
|||
|
|
try:
|
|||
|
|
from test import badsyntax_3131
|
|||
|
|
except SyntaxError as s:
|
|||
|
|
self.assertEqual(str(s),
|
|||
|
|
"invalid character in identifier (badsyntax_3131.py, line 2)")
|
|||
|
|
else:
|
|||
|
|
self.fail("expected exception didn't occur")
|
|||
|
|
|
|||
|
|
def test_main():
|
|||
|
|
support.run_unittest(PEP3131Test)
|
|||
|
|
|
|||
|
|
if __name__=="__main__":
|
|||
|
|
test_main()
|