Fix off-by-one bug in memmove() call in bytes_insert().
Fix by Pete Shinners (for his own bug :-).
diff --git a/Objects/bytesobject.c b/Objects/bytesobject.c
index f7de8bd..f07130d 100644
--- a/Objects/bytesobject.c
+++ b/Objects/bytesobject.c
@@ -2313,7 +2313,7 @@
     }
     if (where > n)
         where = n;
-    memmove(self->ob_bytes + where + 1, self->ob_bytes + where, n - where + 1);
+    memmove(self->ob_bytes + where + 1, self->ob_bytes + where, n - where);
     self->ob_bytes[where] = value;
 
     Py_RETURN_NONE;