summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2013-04-07 21:46:52 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2013-04-07 21:46:52 (GMT)
commit4b7b0f06b459aa2bad371f26576a9e0388795553 (patch)
tree45a9be5ea4d114e66c03882ae5be7429ff259b5b /Modules
parentd673ed9b437e29ff093019dd13c314913d1686ec (diff)
downloadcpython-4b7b0f06b459aa2bad371f26576a9e0388795553.zip
cpython-4b7b0f06b459aa2bad371f26576a9e0388795553.tar.gz
cpython-4b7b0f06b459aa2bad371f26576a9e0388795553.tar.bz2
gibibytes (Arfrever)
Diffstat (limited to 'Modules')
-rw-r--r--Modules/_pickle.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_pickle.c b/Modules/_pickle.c
index f0d3e79..c7be5dc 100644
--- a/Modules/_pickle.c
+++ b/Modules/_pickle.c
@@ -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