fegge wrote: > when i declare a class, is there difference between the below: > class myClass(): > class myClass(threading.Thread) > Yes, the first one is a syntax error because you aren't allowed empty parentheses in a class statement but the second one is a syntax error because you don't have a colon.
-- http://mail.python.org/mailman/listinfo/python-list