From 5bd893b1ea660d542e6d2df93af0b237b3d34e79 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Thu, 8 Oct 1998 01:45:47 +0000 Subject: The previous checkin contained an experiment of Greg Stein's that wasn't meant for checkin, and which broke marshal.loads(). --- Python/marshal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/marshal.c b/Python/marshal.c index df7f51c..ddccc89 100644 --- a/Python/marshal.c +++ b/Python/marshal.c @@ -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; -- cgit v0.12