Kaydet (Commit) 5bd893b1 authored tarafından Guido van Rossum's avatar Guido van Rossum

The previous checkin contained an experiment of Greg Stein's that wasn't

meant for checkin, and which broke marshal.loads().
üst 0f8b30f8
......@@ -743,7 +743,7 @@ marshal_loads(self, args)
PyObject *v;
char *s;
int n;
if (!PyArg_Parse(args, "r#", &s, &n))
if (!PyArg_Parse(args, "s#", &s, &n))
return NULL;
rf.fp = NULL;
rf.str = args;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment