[Python-checkins] r51997 - in python/branches/release25-maint: Modules/almodule.c Modules/bz2module.c Python/pystate.c

georg.brandl python-checkins at python.org
Mon Sep 25 08:53:43 CEST 2006


Author: georg.brandl
Date: Mon Sep 25 08:53:42 2006
New Revision: 51997

Modified:
   python/branches/release25-maint/Modules/almodule.c
   python/branches/release25-maint/Modules/bz2module.c
   python/branches/release25-maint/Python/pystate.c
Log:
Backport rev. 51987: superfluous semicola.



Modified: python/branches/release25-maint/Modules/almodule.c
==============================================================================
--- python/branches/release25-maint/Modules/almodule.c	(original)
+++ python/branches/release25-maint/Modules/almodule.c	Mon Sep 25 08:53:42 2006
@@ -1686,7 +1686,7 @@
 {
 	int res, param;
 	ALparamInfo pinfo;
-	PyObject *v, *item;;
+	PyObject *v, *item;
 
 	if (!PyArg_ParseTuple(args, "ii:GetParamInfo", &res, &param))
 		return NULL;

Modified: python/branches/release25-maint/Modules/bz2module.c
==============================================================================
--- python/branches/release25-maint/Modules/bz2module.c	(original)
+++ python/branches/release25-maint/Modules/bz2module.c	Mon Sep 25 08:53:42 2006
@@ -1023,12 +1023,12 @@
 		case MODE_CLOSED:
 			PyErr_SetString(PyExc_ValueError,
 					"I/O operation on closed file");
-			goto cleanup;;
+			goto cleanup;
 
 		default:
 			PyErr_SetString(PyExc_IOError,
 					"seek works only while reading");
-			goto cleanup;;
+			goto cleanup;
 	}
 
 	if (where == 2) {

Modified: python/branches/release25-maint/Python/pystate.c
==============================================================================
--- python/branches/release25-maint/Python/pystate.c	(original)
+++ python/branches/release25-maint/Python/pystate.c	Mon Sep 25 08:53:42 2006
@@ -501,7 +501,7 @@
 {
 	PyThread_delete_key(autoTLSkey);
 	autoTLSkey = 0;
-	autoInterpreterState = NULL;;
+	autoInterpreterState = NULL;
 }
 
 /* When a thread state is created for a thread by some mechanism other than


More information about the Python-checkins mailing list