[Python-checkins] r42252 - python/trunk/Modules/_ssl.c

neal.norwitz python-checkins at python.org
Tue Feb 7 07:59:24 CET 2006


Author: neal.norwitz
Date: Tue Feb  7 07:59:20 2006
New Revision: 42252

Modified:
   python/trunk/Modules/_ssl.c
Log:
Fix indentation (whitespace only).

Modified: python/trunk/Modules/_ssl.c
==============================================================================
--- python/trunk/Modules/_ssl.c	(original)
+++ python/trunk/Modules/_ssl.c	Tue Feb  7 07:59:20 2006
@@ -266,7 +266,7 @@
 		} else {
 			sockstate = SOCKET_OPERATION_OK;
 		}
-	    if (sockstate == SOCKET_HAS_TIMED_OUT) {
+	        if (sockstate == SOCKET_HAS_TIMED_OUT) {
 			PyErr_SetString(PySSLErrorObject, "The connect operation timed out");
 			goto fail;
 		} else if (sockstate == SOCKET_HAS_BEEN_CLOSED) {
@@ -426,7 +426,7 @@
 		} else {
 			sockstate = SOCKET_OPERATION_OK;
 		}
-	    if (sockstate == SOCKET_HAS_TIMED_OUT) {
+	        if (sockstate == SOCKET_HAS_TIMED_OUT) {
 			PyErr_SetString(PySSLErrorObject, "The write operation timed out");
 			return NULL;
 		} else if (sockstate == SOCKET_HAS_BEEN_CLOSED) {
@@ -485,7 +485,7 @@
 		} else {
 			sockstate = SOCKET_OPERATION_OK;
 		}
-	    if (sockstate == SOCKET_HAS_TIMED_OUT) {
+	        if (sockstate == SOCKET_HAS_TIMED_OUT) {
 			PyErr_SetString(PySSLErrorObject, "The read operation timed out");
 			Py_DECREF(buf);
 			return NULL;


More information about the Python-checkins mailing list