Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 19cbcad

Browse files
committed
Fix indentation (whitespace only).
1 parent 02876df commit 19cbcad

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Modules/_ssl.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ newPySSLObject(PySocketSockObject *Sock, char *key_file, char *cert_file)
266266
} else {
267267
sockstate = SOCKET_OPERATION_OK;
268268
}
269-
if (sockstate == SOCKET_HAS_TIMED_OUT) {
269+
if (sockstate == SOCKET_HAS_TIMED_OUT) {
270270
PyErr_SetString(PySSLErrorObject, "The connect operation timed out");
271271
goto fail;
272272
} else if (sockstate == SOCKET_HAS_BEEN_CLOSED) {
@@ -426,7 +426,7 @@ static PyObject *PySSL_SSLwrite(PySSLObject *self, PyObject *args)
426426
} else {
427427
sockstate = SOCKET_OPERATION_OK;
428428
}
429-
if (sockstate == SOCKET_HAS_TIMED_OUT) {
429+
if (sockstate == SOCKET_HAS_TIMED_OUT) {
430430
PyErr_SetString(PySSLErrorObject, "The write operation timed out");
431431
return NULL;
432432
} else if (sockstate == SOCKET_HAS_BEEN_CLOSED) {
@@ -485,7 +485,7 @@ static PyObject *PySSL_SSLread(PySSLObject *self, PyObject *args)
485485
} else {
486486
sockstate = SOCKET_OPERATION_OK;
487487
}
488-
if (sockstate == SOCKET_HAS_TIMED_OUT) {
488+
if (sockstate == SOCKET_HAS_TIMED_OUT) {
489489
PyErr_SetString(PySSLErrorObject, "The read operation timed out");
490490
Py_DECREF(buf);
491491
return NULL;

0 commit comments

Comments
 (0)