[Python-checkins] python/dist/src/Python pythonrun.c, 2.195.6.5,
2.195.6.6
loewis at users.sourceforge.net
loewis at users.sourceforge.net
Wed Jul 21 07:34:51 CEST 2004
Update of /cvsroot/python/python/dist/src/Python
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17877/Python
Modified Files:
Tag: release23-maint
pythonrun.c
Log Message:
Patch #984714: Properly diagnose E_DECODE errors.
Index: pythonrun.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/pythonrun.c,v
retrieving revision 2.195.6.5
retrieving revision 2.195.6.6
diff -C2 -d -r2.195.6.5 -r2.195.6.6
*** pythonrun.c 22 Mar 2004 20:41:47 -0000 2.195.6.5
--- pythonrun.c 21 Jul 2004 05:34:47 -0000 2.195.6.6
***************
*** 1483,1486 ****
--- 1483,1489 ----
}
}
+ if (msg == NULL)
+ msg = "unknown decode error";
+ break;
}
default:
More information about the Python-checkins
mailing list