summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_compile.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_compile.py')
-rw-r--r--Lib/test/test_compile.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/test/test_compile.py b/Lib/test/test_compile.py
index b5949fd..0bdd036 100644
--- a/Lib/test/test_compile.py
+++ b/Lib/test/test_compile.py
@@ -304,9 +304,9 @@ if 1:
f1, f2 = f()
self.assertNotEqual(id(f1.__code__), id(f2.__code__))
- def test_unicode_encoding(self):
- code = "# -*- coding: utf-8 -*-\npass\n"
- self.assertRaises(SyntaxError, compile, code, "tmp", "exec")
+## def test_unicode_encoding(self):
+## code = "# -*- coding: utf-8 -*-\npass\n"
+## self.assertRaises(SyntaxError, compile, code, "tmp", "exec")
def test_subscripts(self):
# SF bug 1448804