]> granicus.if.org Git - python/commitdiff
gibibytes (Arfrever)
authorAntoine Pitrou <solipsis@pitrou.net>
Sun, 7 Apr 2013 21:46:52 +0000 (23:46 +0200)
committerAntoine Pitrou <solipsis@pitrou.net>
Sun, 7 Apr 2013 21:46:52 +0000 (23:46 +0200)
Modules/_pickle.c

index f0d3e7928ccaa03e73928da9a94194fbca3944c0..c7be5dcf84d78ae85bf2fce456055786941fcf56 100644 (file)
@@ -1881,7 +1881,7 @@ write_utf8(PicklerObject *self, char *data, Py_ssize_t size)
     if (size > 0xffffffffUL) {
         /* string too large */
         PyErr_SetString(PyExc_OverflowError,
-                        "cannot serialize a string larger than 4GB");
+                        "cannot serialize a string larger than 4GiB");
         return -1;
     }
 #endif