cpython/Lib/test/test_pep3131.py
Alexander Belopolsky e8f583244a Issue #9308: Removed redundant coding cookies. Added tests for
importing encoded modules that do not depend on specific stdlib
modules being encoded in a certain way.
2010-10-15 16:28:20 +00:00

28 lines
772 B
Python

import unittest
from test import support
class PEP3131Test(unittest.TestCase):
def test_valid(self):
class T:
ä = 1
µ = 2 # this is a compatibility character
= 3
self.assertEquals(getattr(T, "\xe4"), 1)
self.assertEquals(getattr(T, "\u03bc"), 2)
self.assertEquals(getattr(T, '\u87d2'), 3)
def test_invalid(self):
try:
from test import badsyntax_3131
except SyntaxError as s:
self.assertEquals(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()