summaryrefslogtreecommitdiffstats
path: root/Python/marshal.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1995-08-28 02:56:20 (GMT)
committerGuido van Rossum <guido@python.org>1995-08-28 02:56:20 (GMT)
commit05870115fce58aa78262cc46102f7e0106ff5779 (patch)
tree80afd193aef991f375a763755e3898775b716a74 /Python/marshal.c
parent69f6ee6a9d250899312586d12ce429b9ecfbe3bc (diff)
downloadcpython-05870115fce58aa78262cc46102f7e0106ff5779.zip
cpython-05870115fce58aa78262cc46102f7e0106ff5779.tar.gz
cpython-05870115fce58aa78262cc46102f7e0106ff5779.tar.bz2
rd_object() with exception is fatal error
Diffstat (limited to 'Python/marshal.c')
-rw-r--r--Python/marshal.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Python/marshal.c b/Python/marshal.c
index 05265f5..c094b98 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;
}