Revert last checkin: _PyUnicode_New() allocates space
for one more character anyway.
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c
index 9937705..7e455a5 100644
--- a/Objects/unicodeobject.c
+++ b/Objects/unicodeobject.c
@@ -427,7 +427,7 @@
 	}
     }
 
-    unicode = _PyUnicode_New(size+1);
+    unicode = _PyUnicode_New(size);
     if (!unicode)
         return NULL;