[Python-checkins] python/dist/src/Python pythonrun.c,2.206,2.207

loewis at users.sourceforge.net loewis at users.sourceforge.net
Wed Jul 21 07:35:05 CEST 2004


Update of /cvsroot/python/python/dist/src/Python
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18000/Python

Modified Files:
	pythonrun.c 
Log Message:
Patch #984714: Properly diagnose E_DECODE errors.
Backported to 2.3.


Index: pythonrun.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/pythonrun.c,v
retrieving revision 2.206
retrieving revision 2.207
diff -C2 -d -r2.206 -r2.207
*** pythonrun.c	7 Jul 2004 17:44:12 -0000	2.206
--- pythonrun.c	21 Jul 2004 05:35:02 -0000	2.207
***************
*** 1472,1475 ****
--- 1472,1478 ----
  			}
  		}
+ 		if (msg == NULL)
+ 			msg = "unknown decode error";
+ 		break;
  	}
  	default:



More information about the Python-checkins mailing list