Rip out all the u"..." literals and calls to unicode().
diff --git a/Lib/test/test_pep263.py b/Lib/test/test_pep263.py
index 3b09c12..ae61af9 100644
--- a/Lib/test/test_pep263.py
+++ b/Lib/test/test_pep263.py
@@ -8,11 +8,11 @@
 

     def test_pep263(self):

         self.assertEqual(

-            u"ðÉÔÏÎ".encode("utf-8"),

+            "ðÉÔÏÎ".encode("utf-8"),

             '\xd0\x9f\xd0\xb8\xd1\x82\xd0\xbe\xd0\xbd'

         )

         self.assertEqual(

-            u"\ð".encode("utf-8"),

+            "\ð".encode("utf-8"),

             '\\\xd0\x9f'

         )