hi how do I write this better with member variables rather than global as you see below.
eg:
test-flag = 0
class AA:
def __init__(...):
def methos(self,...):
global test-flag
test-flag = xx
instead of something like above ..how do i put it i terms of member
variables?
--
http://mail.python.org/mailman/listinfo/python-list
