Fix for one particular test (test_file).  There are still four errors.
(This is not the fix suggested by Hasan Diwan in SF patch# 1753889.)
diff --git a/Lib/test/test_urllib2.py b/Lib/test/test_urllib2.py
index dbcfe26..99e3047 100644
--- a/Lib/test/test_urllib2.py
+++ b/Lib/test/test_urllib2.py
@@ -588,7 +588,7 @@
 
         TESTFN = test_support.TESTFN
         urlpath = sanepathname2url(os.path.abspath(TESTFN))
-        towrite = "hello, world\n"
+        towrite = b"hello, world\n"
         urls = [
             "file://localhost%s" % urlpath,
             "file://%s" % urlpath,