summaryrefslogtreecommitdiffstats
path: root/Python/marshal.c
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-03-03 01:35:32 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-03-03 01:35:32 (GMT)
commit4a90ef03637fdc1bc63ee9be82fbf22cbaa68662 (patch)
treef6424020b09897e21e82740669a5ea1d2583e9da /Python/marshal.c
parent679e9d36f78de3ac18abaaddbcf4f73fcef55b7e (diff)
downloadcpython-4a90ef03637fdc1bc63ee9be82fbf22cbaa68662.zip
cpython-4a90ef03637fdc1bc63ee9be82fbf22cbaa68662.tar.gz
cpython-4a90ef03637fdc1bc63ee9be82fbf22cbaa68662.tar.bz2
Issue #14177: marshal.loads() now raises TypeError when given an unicode string.
Patch by Guilherme Gonçalves.
Diffstat (limited to 'Python/marshal.c')
-rw-r--r--Python/marshal.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/Python/marshal.c b/Python/marshal.c
index 7b1af44..3e2fbeb 100644
--- a/Python/marshal.c
+++ b/Python/marshal.c
@@ -1383,7 +1383,7 @@ marshal_loads(PyObject *self, PyObject *args)
char *s;
Py_ssize_t n;
PyObject* result;
- if (!PyArg_ParseTuple(args, "s*:loads", &p))
+ if (!PyArg_ParseTuple(args, "y*:loads", &p))
return NULL;
s = p.buf;
n = p.len;
@@ -1400,10 +1400,10 @@ marshal_loads(PyObject *self, PyObject *args)
}
PyDoc_STRVAR(loads_doc,
-"loads(string)\n\
+"loads(bytes)\n\
\n\
-Convert the string to a value. If no valid value is found, raise\n\
-EOFError, ValueError or TypeError. Extra characters in the string are\n\
+Convert the bytes object to a value. If no valid value is found, raise\n\
+EOFError, ValueError or TypeError. Extra characters in the input are\n\
ignored.");
static PyMethodDef marshal_methods[] = {