Message45895
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? |
|
| Date |
User |
Action |
Args |
| 2007-08-23 15:37:31 | admin | link | issue945642 messages |
| 2007-08-23 15:37:31 | admin | create | |
|