Squashed compiler wng about signed/unsigned clash in comparison.
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c
index 19af6f7..b9aa85c 100644
--- a/Python/bltinmodule.c
+++ b/Python/bltinmodule.c
@@ -362,7 +362,7 @@
 #endif
 	if (PyObject_AsReadBuffer(cmd, (const void **)&str, &length))
 		return NULL;
-	if (length != strlen(str)) {
+	if ((size_t)length != strlen(str)) {
 		PyErr_SetString(PyExc_TypeError,
 				"expected string without null bytes");
 		return NULL;