On Wed, 2007-01-03 at 12:37 +0100, Dirk Meyer wrote: > Maybe one idea would be to function to get all python files in a dir > as dict: name_without_suffix: name_with_suffix. So we could start > dict['main'] or interate over all python files.
It'd be easier (and probably faster) just to check to see if the files exist when you want to run it. If you want to run foo, check for foo.pyo, then foo.pyc if it doesn't exist, then foo.py if it doesn't exist. ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys - and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV _______________________________________________ Freevo-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/freevo-devel
