Issue #3080: Fix case_ok() using case_bytes()
Invert name and namelen arguments.
diff --git a/Python/import.c b/Python/import.c
index 7f9042a..0194d89 100644
--- a/Python/import.c
+++ b/Python/import.c
@@ -2208,8 +2208,8 @@
match = case_bytes(
PyBytes_AS_STRING(filebytes),
PyBytes_GET_SIZE(filebytes) + prefix_delta,
- PyBytes_AS_STRING(namebytes),
- PyBytes_GET_SIZE(namebytes));
+ PyBytes_GET_SIZE(namebytes),
+ PyBytes_AS_STRING(namebytes));
Py_DECREF(filebytes);
Py_DECREF(namebytes);
return match;