PyUnicode_Contains(): The memcmp() call didn't take into account the
width of Py_UNICODE.  Good catch, MAL.
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c
index a577bfd..03b5dbd 100644
--- a/Objects/unicodeobject.c
+++ b/Objects/unicodeobject.c
@@ -3765,7 +3765,7 @@
     else {
 	end = lhs + (PyUnicode_GET_SIZE(u) - size);
 	while (lhs <= end) {
-	    if (memcmp(lhs++, rhs, size) == 0) {
+	    if (memcmp(lhs++, rhs, size * sizeof(Py_UNICODE)) == 0) {
 		result = 1;
 		break;
 	    }