SF patch# 1766592 by Paul Colomiets.
Fix test_zipimport.
diff --git a/Python/import.c b/Python/import.c
index 25c768f..bb40b68 100644
--- a/Python/import.c
+++ b/Python/import.c
@@ -2620,7 +2620,7 @@
 	buf[2] = (char) ((pyc_magic >> 16) & 0xff);
 	buf[3] = (char) ((pyc_magic >> 24) & 0xff);
 
-	return PyString_FromStringAndSize(buf, 4);
+	return PyBytes_FromStringAndSize(buf, 4);
 }
 
 static PyObject *