Author tinolange
Recipients
Date 2004-05-11.07:53:29
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=212920

Thanks for the hint.

I guess --in the context of _ssl.c -- you only complain
about the lines:

 } else sockstate = SOCKET_OPERATION_OK;

or? Is that right?

I think all the other else's are consistent - at least with
the rest of the file - and some others I looked into (for
example _bsddb.c).

Or do you think that I shall reformat all the other else's
in the file? Also those that are not from me?

Really following the PEP it should look like:

if (foo) {
 ...
}
else if (otherfoo) {
 ...
}
else {
 ...
}

instead of 

if (foo) {
 ...
} else if (otherfoo) {
 ...
} else {
 ...
}

everywhere, or?
History
Date User Action Args
2007-08-23 15:37:31adminlinkissue945642 messages
2007-08-23 15:37:31admincreate