I was trying to write a program with just one class and it was working fine. Then, I seperated that class into two different files and made the objects and called the methods in a third (client.py IO.py main.py). Now, when I use the command:
python client.py IO.py main.py Nothing prints. I think its only interpreting client.py (the objects are declared in main.py) How can I fix this?
-- http://mail.python.org/mailman/listinfo/python-list