]> granicus.if.org Git - python/commitdiff
Backport rev. 51987: superfluous semicola.
authorGeorg Brandl <georg@python.org>
Mon, 25 Sep 2006 06:53:42 +0000 (06:53 +0000)
committerGeorg Brandl <georg@python.org>
Mon, 25 Sep 2006 06:53:42 +0000 (06:53 +0000)
Modules/almodule.c
Modules/bz2module.c
Python/pystate.c

index fbeb13a630245bdc40f0f5c3486468f857159164..0a45d2e0c02b04a0ed606608ea00157f0f247595 100644 (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;
index 24b24891518c335080d0ec353b48dda4b4975cf7..27a38279a66e2fd89b31ba251bd723c1b53b4784 100644 (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) {
index 639278f69020eccff59852e5aab1ca2ea88a2d69..cc25e3ed38e95edf45391ca37e4d03ee243892e3 100644 (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