use the 's' format code instead of 'U'
diff --git a/Parser/asdl_c.py b/Parser/asdl_c.py
index c1e07d2..2b3be2b 100755
--- a/Parser/asdl_c.py
+++ b/Parser/asdl_c.py
@@ -722,7 +722,7 @@
         }
         PyTuple_SET_ITEM(fnames, i, field);
     }
-    result = PyObject_CallFunction((PyObject*)&PyType_Type, "U(O){sOss}",
+    result = PyObject_CallFunction((PyObject*)&PyType_Type, "s(O){sOss}",
                     type, base, "_fields", fnames, "__module__", "_ast");
     Py_DECREF(fnames);
     return (PyTypeObject*)result;