From: Guido van Rossum Date: Mon, 28 Aug 1995 02:56:20 +0000 (+0000) Subject: rd_object() with exception is fatal error X-Git-Tag: v1.3b1~9 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=05870115fce58aa78262cc46102f7e0106ff5779;p=thirdparty%2FPython%2Fcpython.git rd_object() with exception is fatal error --- diff --git a/Python/marshal.c b/Python/marshal.c index 05265f58feef..c094b981e173 100644 --- a/Python/marshal.c +++ b/Python/marshal.c @@ -426,6 +426,7 @@ rd_object(fp) { RFILE rf; if (err_occurred()) { + fatal("XXX rd_object called with exception set"); /* tmp */ fprintf(stderr, "XXX rd_object called with exception set\n"); return NULL; }