[Python-checkins] python/dist/src/Modules readline.c, 2.79.2.3, 2.79.2.4

birkenfeld@users.sourceforge.net birkenfeld at users.sourceforge.net
Thu Sep 29 15:42:48 CEST 2005


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

Modified Files:
      Tag: release24-maint
	readline.c 
Log Message:
backport: fix parse errors in readline



Index: readline.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/readline.c,v
retrieving revision 2.79.2.3
retrieving revision 2.79.2.4
diff -u -d -r2.79.2.3 -r2.79.2.4
--- readline.c	7 Apr 2005 10:19:45 -0000	2.79.2.3
+++ readline.c	29 Sep 2005 13:42:45 -0000	2.79.2.4
@@ -605,6 +605,7 @@
 #ifdef WITH_THREAD	      
 		PyGILState_Release(gilstate);
 #endif
+		return result;
 	}
 	return result;
 }
@@ -657,6 +658,7 @@
 #ifdef WITH_THREAD	      
 		PyGILState_Release(gilstate);
 #endif
+		return result;
 	}
 	return result;
 }



More information about the Python-checkins mailing list