Backport rev. 51987: superfluous semicola.

This commit is contained in:
Georg Brandl 2006-09-25 06:53:42 +00:00
parent edd81b2402
commit b14b59fcf9
3 changed files with 4 additions and 4 deletions

View File

@ -1686,7 +1686,7 @@ al_GetParamInfo(PyObject *self, PyObject *args)
{
int res, param;
ALparamInfo pinfo;
PyObject *v, *item;;
PyObject *v, *item;
if (!PyArg_ParseTuple(args, "ii:GetParamInfo", &res, &param))
return NULL;

View File

@ -1023,12 +1023,12 @@ BZ2File_seek(BZ2FileObject *self, PyObject *args)
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) {

View File

@ -501,7 +501,7 @@ _PyGILState_Fini(void)
{
PyThread_delete_key(autoTLSkey);
autoTLSkey = 0;
autoInterpreterState = NULL;;
autoInterpreterState = NULL;
}
/* When a thread state is created for a thread by some mechanism other than