Issue #3080: imp.new_module() uses Unicode
diff --git a/Python/import.c b/Python/import.c
index 5dcbf17..3237ddc 100644
--- a/Python/import.c
+++ b/Python/import.c
@@ -3787,10 +3787,10 @@
 static PyObject *
 imp_new_module(PyObject *self, PyObject *args)
 {
-    char *name;
-    if (!PyArg_ParseTuple(args, "s:new_module", &name))
+    PyObject *name;
+    if (!PyArg_ParseTuple(args, "U:new_module", &name))
         return NULL;
-    return PyModule_New(name);
+    return PyModule_NewObject(name);
 }
 
 static PyObject *