blob: 1a85f3baff784216ef6be777bad5394f26e76902 [file] [log] [blame]
Raymond Hettingerf9f4c692003-08-30 22:54:55 +00001#! -*- coding: koi8-r -*-
Georg Brandl38d17152008-01-21 18:35:49 +00002# This file is marked as binary in SVN, to prevent MacCVS from recoding it.
Raymond Hettingerf9f4c692003-08-30 22:54:55 +00003
4import unittest
5from test import test_support
6
7class PEP263Test(unittest.TestCase):
8
9 def test_pep263(self):
10 self.assertEqual(
11 u"ðÉÔÏÎ".encode("utf-8"),
12 '\xd0\x9f\xd0\xb8\xd1\x82\xd0\xbe\xd0\xbd'
13 )
14 self.assertEqual(
15 u"\ð".encode("utf-8"),
16 '\\\xd0\x9f'
17 )
18
Georg Brandl38d17152008-01-21 18:35:49 +000019 def test_compilestring(self):
20 # see #1882
21 c = compile("\n# coding: utf-8\nu = u'\xc3\xb3'\n", "dummy", "exec")
22 d = {}
23 exec c in d
24 self.assertEqual(d['u'], u'\xf3')
25
26
Raymond Hettingerf9f4c692003-08-30 22:54:55 +000027def test_main():
28 test_support.run_unittest(PEP263Test)
29
30if __name__=="__main__":
31 test_main()