Remove another INT_MAX limitation
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c
index 489fd1f..668d6e4 100644
--- a/Objects/unicodeobject.c
+++ b/Objects/unicodeobject.c
@@ -225,8 +225,7 @@
      */
     unicode->str[0] = 0;
     unicode->str[length] = 0;
-	assert(length<INT_MAX);
-    unicode->length = (int)length;
+    unicode->length = length;
     unicode->hash = -1;
     unicode->defenc = NULL;
     return unicode;