Need some help on doing some bit simple id count. It like every time it create a class or thread there is id++. Python 3.1
example:
class ClientThread (threading.Thread):
def __init__(self,clientSocket):
threading.Thread.__init__(self)
self.id += 1;
Not sure it how it works.
--
http://mail.python.org/mailman/listinfo/python-list
