Correction of patch #1455898: In the mbcs decoder, set final=False
for stream decoder, but final=True for the decode function.
diff --git a/Modules/_codecsmodule.c b/Modules/_codecsmodule.c
index 6d384b7..405fd7a 100644
--- a/Modules/_codecsmodule.c
+++ b/Modules/_codecsmodule.c
@@ -481,7 +481,7 @@
     const char *data;
     Py_ssize_t size, consumed;
     const char *errors = NULL;
-    int final = 1;
+    int final = 0;
     PyObject *decoded;
 
     if (!PyArg_ParseTuple(args, "t#|zi:mbcs_decode",