Ben Finney wrote: > "André" <[EMAIL PROTECTED]> writes: > >> Personally, I like the idea you suggest, with the modification that I >> would use "." instead of "@", as in >> >> class Server(object): >> def __init__(self, .host, .port, .protocol, .bufsize, .timeout): >> pass > > -1. > > That leading dot is too easy to miss when looking over the code. >
class Server(object): def __init__(self, self.host, self.port, self.protocol, self.bufsize, self.timeout): pass ? /W -- http://mail.python.org/mailman/listinfo/python-list