summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_pep3131.py
diff options
context:
space:
mode:
authorZachary Ware <zachary.ware@gmail.com>2016-09-09 19:55:37 (GMT)
committerZachary Ware <zachary.ware@gmail.com>2016-09-09 19:55:37 (GMT)
commit724f6a67f241f39394b15c419570920ebdfefacb (patch)
treedc795f9edbd8de67b4ad14fb4ed2ec45f9481ae2 /Lib/test/test_pep3131.py
parenta0154c0f0ee38b1b8a05eac181a35c78ca1508f4 (diff)
downloadcpython-724f6a67f241f39394b15c419570920ebdfefacb.zip
cpython-724f6a67f241f39394b15c419570920ebdfefacb.tar.gz
cpython-724f6a67f241f39394b15c419570920ebdfefacb.tar.bz2
Rename test_pep####.py files
Diffstat (limited to 'Lib/test/test_pep3131.py')
-rw-r--r--Lib/test/test_pep3131.py31
1 files changed, 0 insertions, 31 deletions
diff --git a/Lib/test/test_pep3131.py b/Lib/test/test_pep3131.py
deleted file mode 100644
index 0679845..0000000
--- a/Lib/test/test_pep3131.py
+++ /dev/null
@@ -1,31 +0,0 @@
-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()