In article <mailman.3028.1247406021.8015.python-l...@python.org>,
Stef Mientki  <stef.mien...@gmail.com> wrote:
>
>when I''m working in a library, and want to test some of the library
>functions, I need to switch to a main application, (which has a normal
>main-section) and run that.

if __name__ == '__main__':
    main()

Then you can call main() from another module for testing purposes.
-- 
Aahz (a...@pythoncraft.com)           <*>         http://www.pythoncraft.com/

"If you think it's expensive to hire a professional to do the job, wait
until you hire an amateur."  --Red Adair
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to