mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-05-22 21:32:31 +00:00
python-3.6.zip added from Github
README.cosmo contains the necessary links.
This commit is contained in:
parent
75fc601ff5
commit
0c4c56ff39
4219 changed files with 1968626 additions and 0 deletions
31
third_party/python/Lib/test/test_unicode_identifiers.py
vendored
Normal file
31
third_party/python/Lib/test/test_unicode_identifiers.py
vendored
Normal file
|
@ -0,0 +1,31 @@
|
|||
import unittest
|
||||
import sys
|
||||
|
||||
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")
|
||||
|
||||
if __name__ == "__main__":
|
||||
unittest.main()
|
Loading…
Add table
Add a link
Reference in a new issue