Config files editor

2009-02-01 Thread Tim Michelsen
Hello Python, does anyone know of a Python based project that has a GUI based functionality to edit config files read/written by ConfigParser? I found a command line tool here: pyinieditor - Google Code - http://code.google.com/p/pyinieditor/ But I'd rather go with a GUI tool. Thanks in adva

create a list of undocumented functions

2009-03-09 Thread Tim Michelsen
Hello, is there a scipt or any other possibility to create a list of all undocumente functions (without docstrings) within a package or at least module? Thanks for your help in advance. Regards, Timmie -- http://mail.python.org/mailman/listinfo/python-list

Re: create a list of undocumented functions

2009-03-09 Thread Tim Michelsen
Thanks so much. I will try this. May you also have a look at: creating a list of all imported modules http://www.nabble.com/creating-a-list-of-all-imported-modules-to22418347.html Do you have an idea? Thanks & regards, Timmie -- http://mail.python.org/mailman/listinfo/python-list

creating a list of all imported modules

2009-03-09 Thread Tim Michelsen
Hello, how do I create a list of all modules imported by my module/script and which are present in the namespace? I am looking for something like %who in Ipython. My aim is to create a file for the documentation that shows all dependencies of my script on external (3rd party) libraries. T